POST
/
v1
/
inventory
/
warehouses
Create Warehouse
curl --request POST \
  --url https://{client_id}.shipstream.app/api/global/v1/inventory/warehouses \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "East Coast 1",
  "is_active": true
}'
{
  "resource": {
    "type": "<string>",
    "id": 1,
    "warnings": [
      "<string>"
    ]
  },
  "meta": {
    "processing_time": 123
  }
}

Body

application/json

An object conforming to the Warehouse schema to be created.

A Warehouse represents a physical location from which you can store inventory and perform operations independently of other warehouses.

Response

201
application/json

Created - The resource was created successfully.

The response is of type object.