GET
/
inventory-levels
/
lots
Get All Inventory Levels Grouped By Lot
curl --request GET \
  --url https://api.shipbob.com/experimental/inventory-levels/lots \
  --header 'Authorization: Bearer <token>'
{
  "first": "string",
  "items": [
    {
      "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"
    }
  ],
  "last": "string",
  "next": "string",
  "prev": "string"
}

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Query Parameters

LocationId
string<int32>
SearchBy
string
InventoryIds
string
IsActive
boolean
IsDigital
boolean
PageSize
string<int32>
SortBy
string

Response

200
application/json

OK

The response is of type object.