...
| 代码块 |
|---|
POST /api/supplier-service/v1/b2b/poList 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= |
Fields
Field | Data Type | Length | Mandatory | Description |
|---|---|---|---|---|
orderNoList | String[] |
| - | O/M | Request field:Order No list | |
referenceNoList | String[] |
| - | O/M | Request field:Reference No list | |
boxNumber | Int |
| - | - | Total box qty |
dateCreated | DateTime |
| - | - | Created time of PO |
deliveredDate | DateTime |
| - | - | Delivered time of PO | |
orderNo | String |
| - | - | Order No | |
packingDetails | Object[] |
| - | - | Packing info of PO |
forecastAmount | Int |
| - | - | Forecast product amount | |
putAwayQty | Int |
| - | - | Put-away product amount | |
putAwayTime | DateTime |
| - | - | Put-away time |
sku | String |
| - | - | SKU code | |
skuNameEn | String |
| - | - | Product name in English |
skuNameLocal | String |
| - | - | Product name in Chinese |
referenceNo | String |
| - | - | Reference No |
shipperName | String |
| - | - | Shipper name | |
shippingPlanNo | String |
| - | - | ASN reference No |
status | Int |
| - | - | Order status |
statusMsg | String |
| - | - | Order status detail | |
totalVolumeDeclared | BIgDecimal |
| - | - | Declare volume of order | |
totalVolumeUnit | String |
| - | - | Volume unit |
Request Sample
| 代码块 |
|---|
{
"orderNoList": [
"E12283230203000006O",
"E1228322111400002301OE12283230203000005O"
]
} |
Response
| 代码块 |
|---|
{
"code": "0",
"data": [
{
"boxNumber": 1,
"dateCreated": "20222023-1102-1403 17:3614:3244",
"deliveredDate": "",
"orderNo": "E12283221114000001OE12283230203000005O",
"packingDetails": [
{
"forecastAmount": "20100",
"putAwayQty": "",
"putAwayTime": "",
"sku": "deli1498603test001",
"skuNameEn": "deli S241-2-1/2CStest001",
"skuNameLocal": "test001"
}
],
"referenceNo": "AUTEST000001",
"shipperName": "XZ12",
"shippingPlanNo": "A12283230203000001S",
"status": 100,
"statusMsg": "",
"totalVolumeDeclared": 1.000,
"totalVolumeUnit": "cbm",
"totalWeightDeclared": 100.000,
"totalWeightUnit": "KG",
"warehouseCode": "testuser"
},
{
"boxNumber": 1,
"dateCreated": "2023-02-03 17:14:45",
"deliveredDate": "",
"orderNo": "E12283230203000006O",
"packingDetails": [
{
"forecastAmount": "1",
"putAwayQty": "",
"putAwayTime": "",
"sku": "test001",
"skuNameEn": "test001",
"skuNameLocal": "得力S241-2-1/2CStest001"
}
],
"referenceNo": "CA-0001AUTEST000002",
"shipperName": "xzXZ12",
"shippingPlanNo": "A12283221114000001SA12283230203000002S",
"status": 100,
"statusMsg": "",
"totalVolumeDeclared": 01.008000,
"totalVolumeUnit": "cbm",
"totalWeightDeclared": 20100.000,
"totalWeightUnit": "KG",
"warehouseCode": "Canada Warehousetestuser"
}
],
"errors": "",
"message": "",
"messageId": "",
"success": true,
"warnList": ""
} |
...