GET
/
inventory-levels
/
{inventoryId}
/
locations
curl --request GET \
  --url https://api.shipbob.com/experimental/inventory-levels/{inventoryId}/locations \
  --header 'Authorization: <api-key>'
{
  "inventory_id": 0,
  "locations": [
    {
      "awaiting_quantity": 0,
      "committed_quantity": 0,
      "fulfillable_quantity": 0,
      "internal_transfer_quantity": 0,
      "location_id": 0,
      "name": "string",
      "on_hand_quantity": 0
    }
  ],
  "name": "string",
  "sku": "string"
}

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Path Parameters

inventoryId
string
required

Response

200
application/json
OK
inventory_id
integer
locations
object[] | null
name
string | null
sku
string | null

Was this page helpful?