# 创建优惠券通知
# 接口说明
微信小店会通过该接口将创建优惠券操作通知给商户。
# 注意事项
- 回调url设置和消息推送规则需参考消息推送文档 ,如果设置的回调url无法访问,商户将无法收微信小店发送的通知;
# 请求参数说明
参数 | 类型 | 描述 |
---|---|---|
ToUserName | string | 小店UserName |
FromUserName | string | 微信团队的 OpenID(固定值) |
CreateTime | number | 事件时间,Unix时间戳,即格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数 |
MsgType | string | 消息类型,固定为 event |
Event | string | 事件类型,本接口固定为 channels_ec_coupon_create |
coupon_info | object CouponCreateEvent | 事件主体,结构体详情请参考CouponCreateEvent |
# 请求参数示例(解密后的明文JSON)
{
"ToUserName": "gh_*",
"FromUserName": "OpenID",
"CreateTime": 1662480000,
"MsgType": "event",
"Event": "channels_ec_coupon_create",
"coupon_info": {
"coupon_id": "19126",
"create_time": "1662480000"
}
}
# 返回参数说明
只需直接返回字符串
success
# 返回参数示例
success
# 结构体
# CouponCreateEvent
事件主体
参数 | 类型 | 描述 |
---|---|---|
coupon_id | string | 优惠券ID |
create_time | string | 创建时间 |