GET
/
inventory-levels
/
locations
curl --request GET \
  --url https://api.shipbob.com/experimental/inventory-levels/locations \
  --header 'Authorization: <api-key>'
{
  "first": "string",
  "items": [
    {
      "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"
    }
  ],
  "last": "string",
  "next": "string",
  "prev": "string"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

LocationType
string
LocationId
string
SearchBy
string
InventoryIds
string
IsActive
boolean
IsDigital
boolean
PageSize
string
SortBy
string

Response

200
application/json
OK
first
string | null
items
object[] | null
last
string | null
next
string | null
prev
string | null

Was this page helpful?