codecamp

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

immediateDelivery.preCancelOrder

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

预取消配送单接口

请求地址

POST https://api.weixin.qq.com/cgi-bin/express/local/business/order/precancel?access_token=ACCESS_TOKEN

请求参数

属性类型默认值必填说明
access_tokenstring接口调用凭证
shopidstring商家id, 由配送公司分配的appkey
shop_order_idstring唯一标识订单的 ID,由商户生成
shop_nostring商家门店编号,在配送公司登记,闪送shop_no必填,值为店铺id
delivery_signstring用配送公司提供的appSecret加密的校验串说明
delivery_idstring快递公司ID
waybill_idstring配送单id
cancel_reason_idnumber取消原因Id
cancel_reasonstring取消原因

cancel_reason_id 的合法值

说明最低版本
1暂时不需要邮寄
2价格不合适
3订单信息有误,重新下单
4骑手取货不及时
5骑手配送不及时
6其他原因( 如果选择6,需要填写取消原因,否则不需要填写 )

返回值

Object

属性类型说明
errcodenumber错误码, 当errcode==0或者不存在还需要看resultcode
errmsgstring错误描述
resultcodenumber运力返回的错误码
resultmsgstring运力返回的错误描述
deduct_feenumber预计扣除的违约金(单位:元),精确到分
descstring说明

使用场景

在正式取消配送单前,商家可调用本接口查询该订单是否可以取消,取消订单配送公司需要扣除的费用是多少。各家取消规则如下:

配送公司取消规则
顺丰同城急送配送完成前任意节点可取消配送单
闪送配送完成前任意节点可取消配送单
美团配送配送完成前任意节点可取消配送单
达达骑手取货之前可取消配送单

请求示例

{
   "shopid": "123456",
   "shop_order_id": "123456",
   "waybill_id": "123456",
   "delivery_id": "123456",
   "cancel_reason_id": 1,
   "cancel_reason": "",
   "delivery_sign": "123456",
   "shop_no": "shop_no_111"
}

返回数据示例

{
  "resultcode": 0,
  "resultmsg": "ok",
  "deduct_fee": 5,
  "desc": "blabla"
}


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