Interface description
...
向运输商发送运输清单, 清单发送后,订单信息不可更改。
...
Description
Send the Manifest to the carrier. After the list is sent, order status will change to "Closed" and order info cannot be changed anymore. |
Path
HTTP Verb | URL |
---|
Post | /services/shipper/manifests |
Request field
Field (API) | Data Type | Length | Mandatory | Details |
referenceNo/Tracking Number/orderId | String | 80 | M | A sequence list of orders in JSON format that can be used with client order numbers(referenceNo)、(Tracking Number)or server-side order number (orderId), up to 2000 can using the Referenceno, Tracking Number, or OrderID.The interface accepts up to 2,000 orders at a time.
|
Request message
代码块 |
---|
language | js |
---|
borderStyle | solid |
---|
firstline | 1 |
---|
title | Request |
---|
linenumbers | true |
---|
|
["JDQ002445001000931503"] |
Response message
代码块 |
---|
language | java |
---|
firstline | 1 |
---|
title | Response |
---|
linenumbers | true |
---|
|
{
"status": "Success",
"errors": null,
"data": [
{
"status": "Success",
"errors": null,
"orderId": "JDQ002445001000931503",
"trackingNo": "JDQ002445001000931503"
}
]
}
|
...