Webhooks
Orders
- POSTCancel one Shipment by Order Id and Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- GETGet one Shipment by Order Id and Shipment Id
- GETGet Orders
- POSTCreate Order
- POSTCancel single Order by Order ID
- GETGet all Shipments for Order
- POSTCancel one Shipment by Shipment Id
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet Order
- GETGet one Shipment's status timeline by Shipment Id
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTUpdate Tracking Uploaded Status for Multiple Shipments by Shipment Id
Locations
Receiving
Returns
Products
- GETGet Product
- PATCHUpdate a single product with Json Merge Patch functionality
- GETRetrieves List of Products based on filters provided
- POSTCreate single product to the store
- PUTUpdate specific channel metadata record from a variant by channel metadata ID
- DELUsed to delete a specific channel metadata record from a variant by channel metadata ID
- GETGet Taxonomy Parent by Id
- GETGet Taxonomies
- GETGet Taxonomy by Id
- GETGet Packaging Requirement
- POSTUsed to Create a new Channel Metadata Entry for a given Variant
Channels
Inventory
Inventory
Get Inventory
Inventory
Get Inventory
GET
/
inventory
/
{inventoryId}
curl --request GET \
--url https://api.shipbob.com/2.0/inventory/{inventoryId} \
--header 'Authorization: <api-key>'
{
"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
Provide your personal access token in the format 'Bearer {your_personal_access_token}'
Path Parameters
Response
200
application/json
OK
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/2.0/inventory/{inventoryId} \
--header 'Authorization: <api-key>'
{
"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
}
}