logistics.testUpdateOrder
本接口应在服务器端调用,详细说明参见服务端API。
模拟快递公司更新订单状态, 该接口只能用户测试
请求地址
POST https://api.weixin.qq.com/cgi-bin/express/business/test_update_order?access_token=ACCESS_TOKEN
请求参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
access_token | string | 是 | 接口调用凭证 | |
biz_id | string | 是 | 商户id,需填test_biz_id | |
order_id | string | 是 | 订单号 | |
delivery_id | string | 是 | 快递公司id,需填TEST | |
waybill_id | string | 是 | 运单号 | |
action_time | number | 是 | 轨迹变化 Unix 时间戳 | |
action_type | number | 是 | 轨迹变化类型 | |
action_msg | string | 是 | 轨迹变化具体信息说明,使用UTF-8编码 |
action_type 的合法值
值 | 说明 | 最低版本 |
---|---|---|
100001 | 揽件阶段-揽件成功 | |
100002 | 揽件阶段-揽件失败 | |
100003 | 揽件阶段-分配业务员 | |
200001 | 运输阶段-更新运输轨迹 | |
300002 | 派送阶段-开始派送 | |
300003 | 派送阶段-签收成功 | |
300004 | 派送阶段-签收失败 | |
400001 | 异常阶段-订单取消 | |
400002 | 异常阶段-订单滞留 |
返回值
Object
属性 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
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"
}