codecamp

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

logistics.testUpdateOrder

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

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

请求地址

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系统失败

请求数据示例

{
  "biz_id": "test_biz_id",
  "order_id": "xxxxxxxxxxxx",
  "delivery_id": "TEST",
  "waybill_id": "xxxxxxxxxx",
  "action_time": 123456789,
  "action_type": 100001,
  "action_msg": "揽件阶段"
}

返回数据示例

{
  "errcode": 0,
  "errmsg": "ok"
}


微信小程序 小程序使用·onPathUpdate
微信小程序 小程序使用·updatePrinter
温馨提示
下载编程狮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; }