...
| 代码块 |
|---|
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= |
...
Field | Data Type | Length | Mandatory | Description |
|---|---|---|---|---|
skuList | String[] | - | M | SKU code list |
shipperName | String | - | - | Shipper name |
sku | String | - | - | SKU code |
skuNameEn | String | - | - | Product name in English |
skuNameLocal | String | - | - | Product name in Chinese |
warehouseInventoryDTOList | Object[] | - | - | Inventory list |
availableInventory | Int | - | - | Available inventory of product |
incomingInventory | Int | - | - | Incoming inventory of product |
outgoingInventory | Int | - | - | Outgoing inventory of product |
overseasWarehouseCode | String | - | - | Warehouse code |
overseasWarehouseName | String | - | - | Warehouse name |
unsellableInventory | Int | - | - | Outgoing inventory of product |
code | String | - | - | Response code |
errors | Object[] | - | - | Response error |
message | String | - | - | Response message |
messageId | String | - | - | Response message ID |
success | Boolean | - | - | Success |
warnList | - | - | - | No use |
Request Sample
| 代码块 |
|---|
{
"skuList": [
"AWE001",
"202206160010"
]
} |
...