API Reference
- Channels
- Products
- Inventory
- Orders
- Receiving
- Returns
- Webhooks
- Locations
Inventory
Get an inventory item
GET
/
1.0
/
inventory
/
{inventoryId}
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/1.0/inventory/{inventoryId} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"dimensions": {
"depth": 0.1,
"length": 0.1,
"weight": 0.1,
"width": 0.1
},
"fulfillable_quantity_by_fulfillment_center": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"id": 0,
"internal_transfer_quantity": 0,
"name": "Cicero",
"onhand_quantity": 0
}
],
"fulfillable_quantity_by_lot": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"expiration_date": "2019-08-24T14:15:22Z",
"fulfillable_quantity": 0,
"fulfillable_quantity_by_fulfillment_center": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"id": 0,
"internal_transfer_quantity": 0,
"name": "Cicero",
"onhand_quantity": 0
}
],
"internal_transfer_quantity": 0,
"lot_number": "1234",
"onhand_quantity": 0
}
],
"id": 0,
"is_active": true,
"is_case_pick": true,
"is_digital": true,
"is_lot": true,
"name": "Medium Blue T-Shirt",
"packaging_attribute": "None",
"total_awaiting_quantity": 0,
"total_backordered_quantity": 0,
"total_committed_quantity": 0,
"total_exception_quantity": 0,
"total_fulfillable_quantity": 0,
"total_internal_transfer_quantity": 0,
"total_onhand_quantity": 0,
"total_sellable_quantity": 0
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
The inventory id to get
Response
200
application/json
Success
Information about an inventory item
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/1.0/inventory/{inventoryId} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"dimensions": {
"depth": 0.1,
"length": 0.1,
"weight": 0.1,
"width": 0.1
},
"fulfillable_quantity_by_fulfillment_center": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"id": 0,
"internal_transfer_quantity": 0,
"name": "Cicero",
"onhand_quantity": 0
}
],
"fulfillable_quantity_by_lot": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"expiration_date": "2019-08-24T14:15:22Z",
"fulfillable_quantity": 0,
"fulfillable_quantity_by_fulfillment_center": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"id": 0,
"internal_transfer_quantity": 0,
"name": "Cicero",
"onhand_quantity": 0
}
],
"internal_transfer_quantity": 0,
"lot_number": "1234",
"onhand_quantity": 0
}
],
"id": 0,
"is_active": true,
"is_case_pick": true,
"is_digital": true,
"is_lot": true,
"name": "Medium Blue T-Shirt",
"packaging_attribute": "None",
"total_awaiting_quantity": 0,
"total_backordered_quantity": 0,
"total_committed_quantity": 0,
"total_exception_quantity": 0,
"total_fulfillable_quantity": 0,
"total_internal_transfer_quantity": 0,
"total_onhand_quantity": 0,
"total_sellable_quantity": 0
}
Assistant
Responses are generated using AI and may contain mistakes.