immediateDelivery.preCancelOrder

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

预取消配送单接口

请求地址

  1. 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说明

使用场景

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

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

请求示例

  1. {
  2. "shopid": "123456",
  3. "shop_order_id": "123456",
  4. "waybill_id": "123456",
  5. "delivery_id": "123456",
  6. "cancel_reason_id": 1,
  7. "cancel_reason": "",
  8. "delivery_sign": "123456",
  9. "shop_no": "shop_no_111"
  10. }

返回数据示例

  1. {
  2. "resultcode": 0,
  3. "resultmsg": "ok",
  4. "deduct_fee": 5,
  5. "desc": "blabla"
  6. }