logistics.testUpdateOrder

本接口应在服务器端调用,详细说明参见服务端API

模拟快递公司更新订单状态, 该接口只能用户测试

请求地址

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

请求参数

属性类型默认值必填说明
access_tokenstring接口调用凭证
biz_idstring商户id,需填test_biz_id
order_idstring订单号
delivery_idstring快递公司id,需填TEST
waybill_idstring运单号
action_timenumber轨迹变化 Unix 时间戳
action_typenumber轨迹变化类型
action_msgstring轨迹变化具体信息说明,使用UTF-8编码

action_type 的合法值

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

返回值

Object

属性类型说明
errcodenumber错误码
errmsgstring错误信息

errcode 的合法值

说明最低版本
0成功
-1系统失败

请求数据示例

  1. {
  2. "biz_id": "test_biz_id",
  3. "order_id": "xxxxxxxxxxxx",
  4. "delivery_id": "TEST",
  5. "waybill_id": "xxxxxxxxxx",
  6. "action_time": 123456789,
  7. "action_type": 100001,
  8. "action_msg": "揽件阶段"
  9. }

返回数据示例

  1. {
  2. "errcode": 0,
  3. "errmsg": "ok"
  4. }