# 提现回调
# 接口说明
微信小店会通过该接口将提现的消息通知给商户
# 注意事项
- 回调url设置和消息推送规则需参考消息推送文档 ,如果设置的回调url无法访问,商户将无法收微信小店发送的通知;
# 请求参数说明
参数 | 类型 | 描述 |
---|---|---|
ToUserName | string | 小店UserName |
CreateTime | number | 事件时间,Unix时间戳,即格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数 |
MsgType | string | 消息类型,固定为 event |
Event | string | 事件类型,本接口固定为 channels_ec_withdraw_notify |
withdraw_info | object WithdrawInfo | 事件主体 |
# 请求参数示例(解密后的明文JSON)
{
"ToUserName": "gh_*",
"CreateTime": 1662480000,
"MsgType": "event",
"Event": "channels_ec_withdraw_notify",
"withdraw_info": {
"withdraw_id": "wds123123143144",
"event": 1
}
}
# 返回参数说明
只需直接返回字符串
success
# 返回参数示例
success
# 结构体
# WithdrawInfo
事件主体
参数 | 类型 | 描述 |
---|---|---|
withdraw_id | string | 提现单号 |
event | number | 提现事件。1.发起提现,生成二维码 2.扫码验证成功,申请提现 3.提现成功 4.提现失败 |