Skip to content
On this page

6.4.2 获取发货单状态

接口说明:

MethodURLContentType
GET/api/restful/order/{delivery_code}/delivery-statusapplication/json

URL参数说明:

参数类型说明是否必须长度描述
delivery_codestring必须50发货单号

返回结果说明:

参数类型说明描述
delivery_codestring发货单号
stateint状态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"
}