API Reference
- Channels
- Orders
- Products
- Inventory
- Receiving
- Returns
- Webhooks
- Locations
Inventory
Get Inventory Levels Grouped By Lot
GET
/
2.0
/
inventory-level
/
{inventoryId}
/
lots
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/2.0/inventory-level/{inventoryId}/lots \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"inventory_id": 0,
"lots": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"internal_transfer_quantity": 0,
"locations": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"internal_transfer_quantity": 0,
"location_id": 0,
"name": "string",
"on_hand_quantity": 0
}
],
"lot_date": "2019-08-24T14:15:22Z",
"lot_number": "string",
"on_hand_quantity": 0
}
],
"name": "string",
"sku": "string"
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.shipbob.com/2.0/inventory-level/{inventoryId}/lots \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"inventory_id": 0,
"lots": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"internal_transfer_quantity": 0,
"locations": [
{
"awaiting_quantity": 0,
"committed_quantity": 0,
"fulfillable_quantity": 0,
"internal_transfer_quantity": 0,
"location_id": 0,
"name": "string",
"on_hand_quantity": 0
}
],
"lot_date": "2019-08-24T14:15:22Z",
"lot_number": "string",
"on_hand_quantity": 0
}
],
"name": "string",
"sku": "string"
}
Assistant
Responses are generated using AI and may contain mistakes.