Description
Get the product info (count / status ...) in each warehouse.
...
描述
从各仓库获取相应商品库存数据
路径
HTTP Verb | URL |
|---|---|
| POST | /api/supplier-service/v1/b2b/inventory |
...
请求头样例
| 代码块 |
|---|
POST /api/supplier-service/v1/b2b/inventory HTTP/1.1 Content-Type: application/json Accept: application/json User-Agent: Mozilla 5.0 Host: http://qa.etowertech.com/ X-WallTech-Date: Thu, 06 Aug 2020 06:36:24 GMT Authorization: WallTech testLvs2jdug2qIoRsJyuxs:VaWNgikNP0NGcoxVCeWYid50MYQ= |
Fileds字段
Field
Data Type
Length
Mandatory
Description
字段名 |
|---|
数据类型 |
|---|
最大长度 |
|---|
必填性 |
|---|
描述 | ||||
|---|---|---|---|---|
skuList | 商品编码 | |||
shipperName | 发货人名称 | |||
sku | 商品编码 | |||
skuNameEn | 商品英文名 | |||
skuNameLocal | 商品中文名 | |||
warehouseInventoryDTOList | 仓库库存信息 | |||
availableInventory | 可用库存 | |||
incomingInventory | 待入库库存 | |||
outgoingInventory | 待出库库存 | |||
overseasWarehouseCode | 仓库代码 | |||
overseasWarehouseName | 仓库名称 | |||
unsellableInventory | 不可用库存 | |||
code | 编码内容 | |||
errors | 报错 | |||
message | 返回信息 | |||
messageId | 信息编码 | |||
success | 成功响应 | |||
warnList | 废弃字段 |
...
请求样例
| 代码块 |
|---|
{
"skuList": [
"AWE001",
"202206160010"
]
} |
...
返回样例
| 代码块 |
|---|
{
"code": "0",
"data": [
{
"shipperName": "xz",
"sku": "202206160010",
"skuNameEn": "note book",
"skuNameLocal": "记事本",
"warehouseInventoryDTOList": [
{
"availableInventory": 0,
"incomingInventory": 620,
"outgoingInventory": 0,
"overseasWarehouseCode": "mghc",
"overseasWarehouseName": "美国货仓",
"unsellableInventory": ""
},
{
"availableInventory": 26,
"incomingInventory": 580,
"outgoingInventory": 5,
"overseasWarehouseCode": "elsck",
"overseasWarehouseName": "俄罗斯仓库",
"unsellableInventory": ""
}
]
},
{
"shipperName": "xz",
"sku": "AWE001",
"skuNameEn": "bag",
"skuNameLocal": "背包",
"warehouseInventoryDTOList": [
{
"availableInventory": 75,
"incomingInventory": 0,
"outgoingInventory": 20,
"overseasWarehouseCode": "USEA",
"overseasWarehouseName": "谷仓",
"unsellableInventory": 0
}
]
}
],
"errors": "",
"message": "",
"messageId": "",
"success": true,
"warnList": ""
} |
...