List Inventory Levels
GET
/admin/inventory-items/{id}/location-levels
Inventory Items
location_id
. The inventory levels can also be paginated.Request Request Example
JavaScript
Shell
Java
Swift
curl --location -g --request GET '{{BASE_URL}}/admin/inventory-items//location-levels'
Response Response Example
200 - Example 1
{
"limit": 0,
"offset": 0,
"count": 0,
"inventory_levels": [
{
"id": "string",
"inventory_item_id": "string",
"location_id": "string",
"stocked_quantity": 0,
"reserved_quantity": 0,
"available_quantity": 0,
"incoming_quantity": 0,
"metadata": {}
}
]
}
Request
Path Params
id
stringÂ
required
Query Params
fields
stringÂ
fields
+
it will be added to the default fields, using -
will remove it from the default fields. without prefix it will replace the entire default fields.offset
numberÂ
offset
limit
numberÂ
limit
order
stringÂ
order
-
.$and
array [object]Â
$and
$or
array [object]Â
$or
Responses
Modified at 2025-06-17 04:10:32