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

2020-07-31 14:04 更新

logistics.onPathUpdate

本文檔描述服務(wù)器端接收的消息或事件,詳細(xì)說明參見消息推送。

運單軌跡更新事件。當(dāng)運單軌跡有更新時,會產(chǎn)生如下數(shù)據(jù)包。收到事件之后,回復(fù)success或者空串即可。

消息參數(shù)

Object

屬性類型說明
ToUserNamestring小程序的原始ID
FromUserNamestring發(fā)送者的openid
CreateTimenumber消息創(chuàng)建時間(整型)
MsgTypestring固定 event
Eventstring固定 add_express_path
DeliveryIDstring快遞公司ID
WayBillIdstring運單ID
OrderIdstring訂單ID
Versionnumber軌跡版本號(整型)
Countnumber軌跡節(jié)點數(shù)(整型)
ActionsArray.<Object>軌跡列表

Actions 的結(jié)構(gòu)

屬性類型說明
ActionTimenumber軌跡節(jié)點 Unix 時間戳
ActionTypenumber軌跡節(jié)點類型
ActionMsgstring軌跡節(jié)點詳情

ActionType 的合法值

說明最低版本
100001攬件階段-攬件成功
100002攬件階段-攬件失敗
100003攬件階段-分配業(yè)務(wù)員
200001運輸階段-更新運輸軌跡
300002派送階段-開始派送
300003派送階段-簽收成功
300004派送階段-簽收失敗
400001異常階段-訂單取消
400002異常階段-訂單滯留

消息數(shù)據(jù)包示例

XML 格式

<xml>
  <ToUserName><![CDATA[toUser]]></ToUserName>
  <FromUserName><![CDATA[fromUser]]></FromUserName>
  <CreateTime>1546924844</CreateTime>
  <MsgType><![CDATA[event]]></MsgType>
  <Event><![CDATA[add_express_path]]></Event>
  <DeliveryID><![CDATA[SF]]></DeliveryID>
  <WayBillId><![CDATA[123456789]]></WayBillId>
  <OrderId><![CDATA[123456]]></OrderId>
  <Version>3</Version>
  <Count>3</Count>
  <Actions>
    <ActionTime>1546924840</ActionTime>
    <ActionType>100001</ActionType>
    <ActionMsg><![CDATA[小哥A攬件成功]]></ActionMsg>
  </Actions>
  <Actions>
    <ActionTime>1546924841</ActionTime>
    <ActionType>200001</ActionType>
    <ActionMsg><![CDATA[到達(dá)廣州集包地]]></ActionMsg>
  </Actions>
  <Actions>
    <ActionTime>1546924842</ActionTime>
    <ActionType>200001</ActionType>
    <ActionMsg><![CDATA[運往目的地]]></ActionMsg>
  </Actions>
</xml>

JSON 格式

{
  "ToUserName": "toUser",
  "FromUserName": "fromUser",
  "CreateTime": 1546924844,
  "MsgType": "event",
  "Event": "add_express_path",
  "DeliveryID": "SF",
  "WayBillId": "123456789",
  "OrderId": "123456789",
  "Version": 2,
  "Count": 3,
  "Actions": [
    {
      "ActionTime": 1546924840,
      "ActionType": 100001,
      "ActionMsg": "小哥A攬件成功"
    },
    {
      "ActionTime": 1546924841,
      "ActionType": 200001,
      "ActionMsg": "到達(dá)廣州集包地"
    },
    {
      "ActionTime": 1546924842,
      "ActionType": 200001,
      "ActionMsg": "運往目的地"
    }
  ]
}


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號