Skip to content
On this page

9.1.4 查询物流签收信息

接口说明

MethodURLContentType
GET/api/restful/order/{order_id}/logistics-sign-infoapplication/json

URL参数说明:

参数类型说明是否必须长度描述
order_idstring必须200预下订单号

返回结果说明:

参数类型说明描述
expressInfojson{"expressName":"快递公司","expressTime":"快递时间","expressNo":"快递单号"}
deliverInfojson{"deliver":"快递员","deliverTime":"配送时间","deliverDesc":"快递员手机号等信息"}
receiveInfojson{"receiveTime":"签收时间","receiveDesc":"签收信息"}
orderIdstring预下订单号

请求参数示例:

json

/api/restful/order/DD190521000233/logistics-sign-info

返回数据示例:

{
	"result": {
		"expressInfo": {
			"expressName": "德邦快递",
			"expressTime": "2023-09-18 21:38:08",
			"expressNo": "DPK0000000001"
		},
		"deliverInfo": {
			"deliver": "张三",
			"deliverTime": "2023-09-19 13:54:07",
			"deliverDesc": "15500001111"
		},
		"receiveInfo": {
			"receiveTime": "2023-09-19 13:54:30",
			"receiveDesc": "已签收,签收人类型:同事"
		},
		"orderId": "DD190521000233"
	},
	"success": true,
	"errormsg": "",
	"errorcode": "0",
	"requestId": "74496963-d576-46fe-a8a9-694e10717988"
}