Version: 202607
List inventory levels
GET/openapi/2026-07/locations/:location_id/inventory_levels
List all inventory information of this location.
Request
Path Parameters
location_id uint64required
Location ID
Query Parameters
cursor string
Cursor for pagination
page_size int32
Number of records per page
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
inventory_levels object[]
List of inventory levels
inventory_item_idstring
Inventory item ID
location_idstring
Location ID
stockint64
Stock quantity
updated_atstring
Last update timestamp, in ISO-8601 format
cursorstring
The cursor for the next page of results
has_moreboolean
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"inventory_levels": [
{
"inventory_item_id": "string",
"location_id": "string",
"stock": 0,
"updated_at": "string"
}
],
"cursor": "string",
"has_more": true
}
}