Channels
Receiving
Inventories
Products
- 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
- POSTCreate a new Channel Metadata Entry for a given Variant
- POSTMigrates existing variants to a new product
- GETGets Packaging Requirement
- GETGets Taxonomy by Id
- GETGets Taxonomy
- POSTMigrates variants to existing product
- POSTAdd new product variants to a product
- GETGets Product by Id
- DELDeletes Bundle and removes associations to related products
- PATCHUpdate a single product with Json Merge Patch functionality
- POSTUsed to merge two or more variants together
- GETGets Taxonomy Parent
- GETGets multiple product variants
- POSTAdds new product variants to a product
- PATCHUpdates multiple product variants
- GETRetrieves List of Products based on filters provided
- POSTCreate single product to the store
Inventories
Get All Inventories
Inventories
Get All Inventories
GET
/
inventories
curl --request GET \
--url https://api.shipbob.com/experimental/inventories \
--header 'Authorization: <api-key>'
{
"first": "string",
"items": [
{
"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
}
}
],
"last": "string",
"next": "string",
"prev": "string"
}
Authorizations
Provide your personal access token in the format 'Bearer {your_personal_access_token}'
Query Parameters
Response
200
application/json
OK
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/experimental/inventories \
--header 'Authorization: <api-key>'
{
"first": "string",
"items": [
{
"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
}
}
],
"last": "string",
"next": "string",
"prev": "string"
}