curl --request GET \
--url https://api.shipbob.com/2025-07/inventory-level/{inventoryId}/locations \
--header 'Authorization: Bearer <token>'
{
"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"
}
Authentication using Personal Access Token (PAT) token
OK
The response is of type object
.
curl --request GET \
--url https://api.shipbob.com/2025-07/inventory-level/{inventoryId}/locations \
--header 'Authorization: Bearer <token>'
{
"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"
}