API Reference
- Channels
- Orders
- Products
- Inventory
- Receiving
- Returns
- Webhooks
- Locations
Inventory
Get Inventory
GET
/
2.0
/
inventory
/
{inventoryId}
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/2.0/inventory/{inventoryId} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"barcode": "string",
"dimensions": {
"height": 0.1,
"is_locked": true,
"length": 0.1,
"unit": "string",
"validated": true,
"width": 0.1
},
"inventory_id": 0,
"is_case": true,
"is_lot": true,
"name": "string",
"sku": "string",
"user_id": 0,
"variant": {
"hazmat": {
"is_hazmat": true,
"validated": true
},
"is_active": true,
"is_bundle": true,
"is_digital": true
},
"weight": {
"unit": "string",
"value": 0.1
}
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/2.0/inventory/{inventoryId} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"barcode": "string",
"dimensions": {
"height": 0.1,
"is_locked": true,
"length": 0.1,
"unit": "string",
"validated": true,
"width": 0.1
},
"inventory_id": 0,
"is_case": true,
"is_lot": true,
"name": "string",
"sku": "string",
"user_id": 0,
"variant": {
"hazmat": {
"is_hazmat": true,
"validated": true
},
"is_active": true,
"is_bundle": true,
"is_digital": true
},
"weight": {
"unit": "string",
"value": 0.1
}
}
Assistant
Responses are generated using AI and may contain mistakes.