版本:202607
调整库存层级
PUT/openapi/2026-07/inventory_levels
在指定地点对库存项作增量调整。
请求
- application/json
- 请求体
- 示例
请求体必填
inventory_item_idstring必填
库存项 ID
location_idstring必填
地点 ID
stock_adjustmentint32必填
库存调整量
{
"inventory_item_id": "string",
"location_id": "string",
"stock_adjustment": 0
}
响应
- 200
OK
- application/json
- 数据结构
- 示例
数据结构
codestring
错误码
messagestring
错误信息
data object
inventory_level object
库存层级
inventory_item_idstring
库存项 ID
location_idstring
地点 ID
stockint64
库存数量
updated_atstring
最后更新时间,ISO-8601 格式
{
"code": "string",
"message": "string",
"data": {
"inventory_level": {
"inventory_item_id": "string",
"location_id": "string",
"stock": 0,
"updated_at": "string"
}
}
}