获取订单下售后单

接口调用请求说明

  1. http请求方式:POST
  2. https://api.weixin.qq.com/shop/aftersale/get?access_token=xxxxxxxxx

请求参数示例

  1. {
  2. "order_id":32434234, // 发起售后的订单ID
  3. "out_order_id": "xxxxx",
  4. "openid": "oTVP50O53a7jgmawAmxKukNlq3XI"
  5. }

回包示例

  1. {
  2. "errcode": 0,
  3. "errmsg":"ok",
  4. "aftersale_infos": [
  5. {
  6. "order_id":32434234, // 发起售后的订单ID
  7. "out_order_id": "xxxxx",
  8. "out_aftersale_id": "xxxxxx", // 商家售后ID
  9. "openid": "oTVP50O53a7jgmawAmxKukNlq3XI",
  10. "type": 1, // 1:退款,2:退款退货,3:换货
  11. "create_time": "2020-12-01 00:00:00",
  12. "path": "/pages/order.html?out_order_id=xxxxx",
  13. "status": 1, // 0:未受理,1:用户取消,2:商家受理中,3:商家逾期未处理,4:商家拒绝退款,5:商家拒绝退货退款,6:待买家退货,7:退货退款关闭,8:待商家收货,11:商家退款中,12:商家逾期未退款,13:退款完成,14:退货退款完成
  14. "product_infos": [
  15. {
  16. "out_product_id": "234245",
  17. "out_sku_id": "23424",
  18. "product_cnt": 5
  19. },
  20. ...
  21. ]
  22. }
  23. ]
  24. }

请求参数说明

参数类型是否必填说明
order_idnumber订单ID
out_order_idstring商家自定义订单ID,与 order_id 二选一
openidstring用户的openid

回包参数说明

参数类型说明
errcodenumber错误码
errmsgstring错误信息
aftersale_infos[].out_aftersale_idstring商家自定义售后ID,与aftersale_id二选一
aftersale_infos[].pathstring
aftersale_infos[].openidstring用户的openid
aftersale_infos[].typenumber售后类型,1:退款,2:退款退货,3:换货
aftersale_infos[].statusnumber0:未受理,1:用户取消,2:商家受理中,3:商家逾期未处理,4:商家拒绝退款,5:商家拒绝退货退款,6:待买aftersale_infos[].家退货,7:退货退款关闭,8:待商家收货,11:商家退款中,12:商家逾期未退款,13:退款完成,14:退货退款完成
aftersale_infos[].product_infosobject array退货相关商品列表
aftersale_infos[].product_infos[].out_product_idstring商家自定义商品ID
aftersale_infos[].product_infos[].out_sku_idstring商家自定义sku ID
aftersale_infos[].product_infos[].product_cntnumberproduct_infos存在时必填