List Inventory Level
GET
/admin/inventory-items/{id}/location-levels
Inventory Items
location_id
. The inventory levels can also be paginated.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.medusa-commerce.com/admin/inventory-items//location-levels'
Response Response Example
200 - Example 1
{
"inventory_item": {
"id": null,
"location_levels": [
{
"location_id": "string",
"stocked_quantity": 0,
"reserved_quantity": 0,
"incoming_quantity": 0,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"metadata": {
"car": "white"
}
}
]
}
}
Request
Path Params
id
string
required
Query Params
location_id
array[string]
optional
expand
string
optional
fields
string
optional
Responses
Modified at 2023-10-10 11:56:36