Delete a Warehouse

Removes a warehouse from ShipStation's UI and sets it to Inactive status.

NOTE In the API, the endpoint is called warehouse, but the process actually affects Ship From locations in the UI on the application side of operations.

This is a "soft" delete action, so the warehouse (or Ship From location) will still exist in the database, but this action will set it to Inactive status.

Name Data Type Description
warehouseId number A unique ID generated by ShipStation and assigned to each Ship From Location (formerly known as warehouse).

Optional

Example Request

DELETE /warehouses/warehouseId HTTP/1.1
Host: ssapi.shipstation.com
Authorization: __YOUR_AUTH_HERE__

Example Response

{
  "success": true,
  "message": "The requested warehouse has been deleted."
}