Webhooks
Products
Inventory
Orders
- POSTCancel one Shipment by Shipment Id
- GETGet one Shipment's status timeline by Shipment Id
- GETGet Orders
- POSTCreate Order
- GETGet one Shipment by Order Id and Shipment Id
- GETGet logs for one Shipment by Shipment Id
- GETGet all Shipments for Order
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- POSTCancel single Order by Order ID
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet Order
- POSTCancel one Shipment by Order Id and Shipment Id
Locations
Receiving
- GETGet Fulfillment Centers
- GETGet Warehouse Receiving Order Box Labels (DEPRECATED)
- POSTCancel Warehouse Receiving Order (DEPRECATED)
- GETGet a Warehouse Receiving Order by Purchase Order Number (DEPRECATED)
- POSTCreate Warehouse Receiving Order (DEPRECATED)
- GETGet Warehouse Receiving Order (DEPRECATED)
Returns
Channels
Inventory
Get a list of inventory items by product id
Inventory
Get a list of inventory items by product id
GET
/
product
/
{productId}
/
inventory
curl --request GET \
--url https://api.shipbob.com/1.0/product/{productId}/inventory \
--header 'Authorization: Bearer <token>'
[
{
"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
Headers
Channel Id for Operation
Path Parameters
The product id to get inventory for
Response
200
application/json
Success
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/1.0/product/{productId}/inventory \
--header 'Authorization: Bearer <token>'
[
{
"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
}
]