...
| 代码块 |
|---|
POST /api/supplier-service/v1/b2b/inventory HTTP/1.1
Content-Type: application/json
Accept: application/json
User-Agent: Mozilla 5.0
Host: http://cfs-qa.etowertech.com/
X-WallTech-Date: Thu, 06 Aug 2020 06:36:24 GMT
Authorization: WallTech testLvs2jdug2qIoRsJyuxs:VaWNgikNP0NGcoxVCeWYid50MYQ= |
...
| 字段名 | 数据类型 | 最大长度 | 必填性 | 描述 |
|---|---|---|---|---|
skuList | ||||
请求样例
| 代码块 |
|---|
{
"skuList": [
"AWE001",Red "202206160010"wine box"
]
} |
返回样例
字段名 | 数据类型 | 最大长度 | 必填性 | 描述 |
|---|---|---|---|---|
skuList | 商品编码 | |||
shipperName | 发货人名称 | |||
sku | 商品编码 | |||
skuNameEn | 商品英文名 | |||
skuNameLocal | 商品中文名 | |||
warehouseInventoryDTOList | 仓库库存信息 | |||
availableInventory | 可用库存 | |||
incomingInventory | 待入库库存 | |||
outgoingInventory | 待出库库存 | |||
overseasWarehouseCode | 仓库代码 | |||
overseasWarehouseName | 仓库名称 | |||
unsellableInventory | 不可用库存 | |||
code | 编码内容 | |||
errors | 报错 | |||
message | 返回信息 | |||
messageId | 信息编码 | |||
success | 成功响应 | |||
warnList | 废弃字段 |
...
| 代码块 |
|---|
{
"code": "0",
"data": [
{
"shipperName": "xz",
"sku": "202206160010Red wine box",
"skuNameEn": "noteRed wine bookbox",
"skuNameLocal": "记事本红酒盒子",
"warehouseInventoryDTOList": [
{
"availableInventory": 010779,
"incomingInventory": 6207470,
"outgoingInventory": 0321,
"overseasWarehouseCode": "mghcCATESTWH",
"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": ""
} |
...