...
Field | Data Type | Length | Mandatory | Description |
|---|---|---|---|---|
orderNo | String | 128 | M系统订单号 | Order No |
warehouseServiceName | String | 50 | M尾程服务名称 | Lastmile service name |
consigneeAddressCode | String | 50 | O/M | 收件地址代码Consignee address code |
useConsigneeAddressCode | Boolean | 2 | O是否使用收件地址代码 | Use consignee address code or not |
recipientName | String | 128 | O/M | 收件人名称Recipient name |
recipientCompany | String | 50 | O收件公司名称 | Recipient company name |
| String | 100 | O收件人邮箱 | Recipient email | |
phone | String | 50 | O/M | 收件人电话Recipient phone number |
addressLine1 | String | 200 | O/M收件地址行1 | Recipient address line 1 |
addressLine2 | String | 200 | O收件地址行3 | Recipient address line 2 |
addressLine3 | String | 200 | O收件地址行3 | Recipient address line 3 |
city | String | 100 | O/M | 收件城市Recipient city |
state | String | 100 | O收件省份 | Recipient state |
district | String | 100 | O收件区 | Recipient district |
postcode | String | 15 | O/M | 收件地址邮编Recipient postcode |
country | String | 2 | O/M | 收件国家Recipient company |
weight | BigDecimal | (8,3) | O包裹重量(废弃字段,可以传但是不存) | Declare Parcel weight(no use) |
weightUnit | String | 5 | O包裹重量单位(废弃字段,可以传但是不存) | Parcel weight unit(no use) |
volume | BigDecimal | (8,3) | O包裹体积(废弃字段,可以传但是不存) | Declare Parcel volume(no use) |
dimensionUnit | String | 5 | O包裹体积单位(废弃字段,可以传但是不存) | Parcel volume unit(no use) |
length | BigDecimal | (8,1) | O包裹长度(废弃字段,可以传但是不存) | Declare Parcel length(no use) |
width | BigDecimal | (8,1) | O包裹宽度(废弃字段,可以传但是不存) | Declare Parcel width(no use) |
height | BigDecimal | (8,1) | O包裹高度(废弃字段,可以传但是不存) | Declare Parcel height(no use) |
platform | String | 50 | O电商平台 | Platform where order created |
shipperAddressCode | String | 50 | O发件仓库代码 | Warehouse code of departure |
sku | String | 30 | M商品 | SKU code |
productQty | Int | 10 | M商品数量(删除时非必填) | Total product qty in order |
remark | String | 100 | O出库单备注 | Remark of order |
code | - | -返回编码 | Response code | |
errors | - | -报错 | Response error | |
message | - | -返回信息 | Response message | |
messageId | - | -返回信息编码 | Response message ID | |
success | - | - | 成功响应Success | |
warnList | - | -废弃字段 | No use |
Request
| 代码块 |
|---|
{
"orderNo": "C12283230105000014O",
"warehouseServiceName": "TEST08",
"consigneeAddressCode": "",
"useConsigneeAddressCode": "FALSE",
"shipperAddressCode": "double11",
"recipientCompany": "SHANGHAI公司",
"nativeDescription": "",
"description": "",
"country": "US",
"state": "加利福尼亚州",
"city": "London",
"district": "",
"addressLine1": "美国华盛顿",
"addressLine2": "1241224",
"addressLine3": "街道1241224",
"postcode": "12345",
"recipientName": "迈克尔杰克逊",
"phone": "13332543568",
"email": "35643645@qq.com",
"remark": "324432",
"weight": "23432",
"weightUnit": "123455",
"volume": "32423",
"dimensionUnit": "23423",
"length": "312",
"width": "324",
"height": "432",
"platform": "",
"productItems": [
{
"sku": "SKG(TEST)",
"productQty": "2"
}
]
} |
...