Version: 202607
Update inventory level
PUT/openapi/2026-07/inventory_levels
Updates the inventory level for a specific location and inventory item.
Request
- application/json
- Body
- Example
Bodyrequired
inventory_item_idstringrequired
Inventory item ID
location_idstringrequired
Location ID
stock_adjustmentint32required
Stock adjustment
{
"inventory_item_id": "string",
"location_id": "string",
"stock_adjustment": 0
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
inventory_level object
Inventory level
inventory_item_idstring
Inventory item ID
location_idstring
Location ID
stockint64
Stock quantity
updated_atstring
Last update timestamp, in ISO-8601 format
{
"code": "string",
"message": "string",
"data": {
"inventory_level": {
"inventory_item_id": "string",
"location_id": "string",
"stock": 0,
"updated_at": "string"
}
}
}