Appearance
6.4.2 获取发货单状态
接口说明:
Method | URL | ContentType |
---|---|---|
GET | /api/restful/order/{delivery_code}/delivery-status | application/json |
URL参数说明:
参数 | 类型说明 | 是否必须 | 长度 | 描述 |
---|---|---|---|---|
delivery_code | string | 必须 | 50 | 发货单号 |
返回结果说明:
参数 | 类型说明 | 描述 |
---|---|---|
delivery_code | string | 发货单号 |
state | int | 状态0:新建5:发货-2:取消-1:拒收1:签收 |
请求参数示例:
/api/restful/order/756698995252/delivery-status
返回数据示例:
json
{
"result": {
"delivery_code": "756698995252",
"state": -2
},
"success": true,
"errormsg": "",
"errorcode": "0",
"requestId": "06796339f44a4521ae5748db76316a8c"
}