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 Inventory Levels
GET
/
inventory-levels
curl --request GET \
--url https://api.shipbob.com/experimental/inventory-levels \
--header 'Authorization: Bearer <token>'
{
"first": "string",
"items": [
{
"inventory_id": 0,
"name": "string",
"sku": "string",
"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_on_hand_quantity": 0,
"total_sellable_quantity": 0
}
],
"last": "string",
"next": "string",
"prev": "string"
}
Authorizations
Authentication using Personal Access Token (PAT) token
Query Parameters
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.shipbob.com/experimental/inventory-levels \
--header 'Authorization: Bearer <token>'
{
"first": "string",
"items": [
{
"inventory_id": 0,
"name": "string",
"sku": "string",
"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_on_hand_quantity": 0,
"total_sellable_quantity": 0
}
],
"last": "string",
"next": "string",
"prev": "string"
}
Assistant
Responses are generated using AI and may contain mistakes.