版本:202506
创建库存层级
POST/openapi/2025-06/inventory_levels
为指定地点和库存项初始化库存层级记录。
请求
- application/json
- 请求体
- 示例
请求体必填
inventory_item_idstring必填
库存项 ID
location_idstring必填
地点 ID
{
"inventory_item_id": "string",
"location_id": "string"
}
响应
- 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"
}
}
}