Blogger Information
Blog 60
fans 0
comment 0
visits 100937
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
快递公司如何接入快递100?快递100手机查快递接口实例
快递100API
Original
1757 people have browsed it

接口描述

手机查快递接口,通过收寄人手机接口获取该渠道三个月内快递单信息。

请求地址

POST

http://xx.com/api/query/phone

请求头

名称 类型 默认值
Content-Type string application/x-www-form-urlencoded

请求体

参数名 是否必填 类型 说明
key string 接入方在平台的api账户标识
phone string 手机号码
sign string 签名, 用于验证身份, 按(key+phone+secret )的顺序进行MD5加密(注意加密后字符串一定要转大写), 不需要加上“+”号
type number 类型 0:所有,1:发件人,2:收件人 3:既是发件人也是收件人
size number 返回最近的单号轨迹数量

返回结果

字段名称 类型 是否必填 字段含义
result boolean 请求结果
message string 消息体
data arrayobject 业务数据

data类型说明

字段名称 类型 是否必填 字段含义
type number 1:寄件人;2:收件人;3:既是发件人也是收件人
num string 运单号
details arrayobject 物流轨迹实体类

details类型说明

字段名称 类型 是否必填 字段含义
context string 节点轨迹描述
location string 轨迹所在地区行政区,如:广东深圳南山
time string 节点时间,必须格式化为 yyyy-MM-dd HH:mm:ss

提供数据说明

  1. 一、请求失败
  2. {
  3. "result": false,
  4. "message": "手机号码格式错误",
  5. "data": null
  6. }
  7. 二、请求成功,但是查无结果
  8. {
  9. "result": true,
  10. "message": "查无结果",
  11. "data": []
  12. }
  13. 三、请求成功,有单号
  14. {
  15. "result": true,
  16. "message": "SUCCESS",
  17. "data": [
  18. {
  19. "type": 2,
  20. "num": "UT0000280482232",
  21. "details": [
  22. {
  23. "context": "【深圳转运中心】,正发往【深圳南山区十六部】",
  24. "location": "广东省深圳市",
  25. "time": "2018-04-29 16:31:48"
  26. },
  27. {
  28. "context": "到【东莞凤岗中心分部集货点】",
  29. "location": "广东省东莞市",
  30. "time": "2018-04-29 11:23:18"
  31. }
  32. ]
  33. },
  34. {
  35. "type": 1,
  36. "num": "UT0000280482235",
  37. "details": [
  38. {
  39. "context": "站点【退货部】进行了【货物退回客户扫描】操作",
  40. "location": "江苏省南京市玄武区",
  41. "time": "2018-04-29 18:01:22"
  42. },
  43. {
  44. "context": "【南京玄武网点】的小哥郑义正在派件",
  45. "location": "江苏省南京市玄武区",
  46. "time": "2018-04-29 10:17:26"
  47. }
  48. ]
  49. }
  50. ]
  51. }

官方文档:

https://api.kuaidi100.com/document/6051a69aa52d305ab4d2a1cf.html

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post