...
HTTP Verb | URL |
|---|---|
| POST | /api/supplier-service/v1/product/createToWarehouse |
请求头样例
POST /api/supplier-service/v1/product/createToWarehouse HTTP/1.1 Host: http://cfs-qa.etowertech.com Content-Type: application/json Accept: application/json X-WallTech-Date: Thu, 06 Aug 2020 06:01:26 GMT Authorization: WallTech testLvs2jdug2qIoRsJyuxs:2THPh5_j4OTYUGdinstTC4nYqDE= |
字段
字段名 | 数据类型 | 必填性 | 描述 |
|---|---|---|---|
warehouseCodeList | List | M | 海外仓库代码 |
| sku | String | M | SKU编码 |
请求样例
[ { "sku": "EXAMPLE_SKU_01", "warehouseCodeList": [ "CODE_01", "CODE_02", "CODE_03" ] }, { "sku": "EXAMPLE_SKU_02", "warehouseCodeList": [ "CODE_01", "CODE_02" ] } ] |
...