codecamp

微信小程序 小程序使用·getPath

logistics.getPath

本接口应在服务器端调用,详细说明参见服务端API
本接口支持云调用。需开发者工具版本 >= 1.02.1904090(最新稳定版下载
wx-server-sdk >= 0.4.0

查询运单轨迹

调用方式:

  • HTTPS 调用
  • 云调用

HTTPS 调用

请求地址

POST https://api.weixin.qq.com/cgi-bin/express/business/path/get?access_token=ACCESS_TOKEN

请求参数

属性 类型 默认值 必填 说明
access_token string 接口调用凭证
order_id string 订单 ID,需保证全局唯一
openid string 用户openid,当add_source=2时无需填写(不发送物流服务通知)
delivery_id string 快递公司ID,参见getAllDelivery
waybill_id string 运单ID

返回值

Object

属性 类型 说明
openid string 用户openid
delivery_id string 快递公司 ID
waybill_id string 运单 ID
path_item_num number 轨迹节点数量
path_item_list Array.<Object> 轨迹节点列表

path_item_list 的结构

属性 类型 说明
action_time number 轨迹节点 Unix 时间戳
action_type number 轨迹节点类型
action_msg string 轨迹节点详情

action_type 的合法值

说明 最低版本
100001 揽件阶段-揽件成功
100002 揽件阶段-揽件失败
100003 揽件阶段-分配业务员
200001 运输阶段-更新运输轨迹
300002 派送阶段-开始派送
300003 派送阶段-签收成功
300004 派送阶段-签收失败
400001 异常阶段-订单取消
400002 异常阶段-订单滞留

请求数据示例

{
  "order_id": "01234567890123456789",
  "openid": "oABC123456",
  "delivery_id": "SF",
  "waybill_id": "123456789"
}

返回数据示例

{
  "openid": "OPENID",
  "delivery_id": "SF",
  "waybill_id": "12345678901234567890",
  "path_item_num": 3,
  "path_item_list": [
    {
      "action_time": 1533052800,
      "action_type": 100001,
      "action_msg": "快递员已成功取件"
    },
    {
      "action_time": 1533062800,
      "action_type": 200001,
      "action_msg": "快件已到达xxx集散中心,准备发往xxx"
    },
    {
      "action_time": 1533072800,
      "action_type": 300001,
      "action_msg": "快递员已出发,联系电话xxxxxx"
    }
  ]
}

云调用

云调用是小程序·云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 wx-server-sdk 使用。

接口方法

openapi.logistics.getPath
需在 config.json 中配置 logistics.getPath API 的权限,详情

请求参数

属性 类型 默认值 必填 说明
orderId string 订单 ID,需保证全局唯一
openid string 用户openid,当add_source=2时无需填写(不发送物流服务通知)
deliveryId string 快递公司ID,参见getAllDelivery
waybillId string 运单ID

返回值

Object

属性 类型 说明
openid string 用户openid
deliveryId string 快递公司 ID
waybillId string 运单 ID
pathItemNum number 轨迹节点数量
pathItemList Array.<Object> 轨迹节点列表

pathItemList 的结构

属性 类型 说明
actionTime number 轨迹节点 Unix 时间戳
actionType number 轨迹节点类型
actionMsg string 轨迹节点详情

actionType 的合法值

说明 最低版本
100001 揽件阶段-揽件成功
100002 揽件阶段-揽件失败
100003 揽件阶段-分配业务员
200001 运输阶段-更新运输轨迹
300002 派送阶段-开始派送
300003 派送阶段-签收成功
300004 派送阶段-签收失败
400001 异常阶段-订单取消
400002 异常阶段-订单滞留

请求数据示例

const cloud = require('wx-server-sdk')
cloud.init()
exports.main = async (event, context) => {
  try {
    const result = await cloud.openapi.logistics.getPath({
        openid: 'oABC123456',
        orderId: '01234567890123456789',
        deliveryId: 'SF',
        waybillId: '123456789'
      })
    return result
  } catch (err) {
    return err
  }
}

返回数据示例

{
  "openid": "OPENID",
  "deliveryId": "SF",
  "waybillId": "12345678901234567890",
  "pathItemNum": 3,
  "pathItemList": [
    {
      "actionTime": 1533052800,
      "actionType": 100001,
      "actionMsg": "快递员已成功取件"
    },
    {
      "actionTime": 1533062800,
      "actionType": 200001,
      "actionMsg": "快件已到达xxx集散中心,准备发往xxx"
    },
    {
      "actionTime": 1533072800,
      "actionType": 300001,
      "actionMsg": "快递员已出发,联系电话xxxxxx"
    }
  ],
  "errMsg": "openapi.logistics.getPath:ok"
}


微信小程序 小程序使用·getOrder
微信小程序 小程序使用·getPrinter
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

微信小程序 指南

目录结构

开放能力

微信小程序 调试

微信小程序 实时日志

微信小程序 小程序测速

微信小程序 基础组件

微信小程序 API

媒体

界面

微信小程序API 绘图

微信小程序 服务端

接口调用凭证

统一服务消息

微信小程序 服务市场

微信小程序 生物认证

微信小程序 云开发

服务端

微信小程序云开发服务端API 数据库

SDK文档

微信小程序 扩展能力

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }