Skip to content
快速导航

订单退款推送

用户订单退款成功后,推送该消息。

  • 易知课堂服务器将数据加密后以POST请求的形式请求开发者在易知课程后台配置的消息接收配置URL,开发者收到消息后参考消息解密 解密后获得原始数据。
  • 解密后为json格式

推送参数

参数类型长度必填说明
appidstring18
info_typestringorder_refund
dataobject业务数据

data 业务数据

参数类型长度必填说明
out_trade_nostring内部订单号
refund_timestring2022-09-03 14:32 退款时间
refund_amountstring退款金额
out_refund_nostring退款单号

消息解密后数据示例

json
{
  "appid": "yzL9fy5g9LyQeYYlHj",
  "info_type": "order_refund",
  "data": {
    "out_trade_no": "40422694043242031234",
    "refund_time": "2022-09-03 14:32",
    "refund_amount": "9.01",
    "out_refund_no": "9401233455678"
  }
}