(下行接口)客如云提供通过券模板发券接口
授权方式:门店授权
HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI: /open/v1/crm/coupon/manualSend
详情可查看【公共说明】中的公共参数模块
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
brandId | Long | 是 | 客如云品牌Id |
shopId | Long | 是 | 客如云门店Id |
customerId | Long | 否 | 顾客Id |
customerInfo | ManualCouponCustomerInfoTO | 否 | 开放用户信息,顾客customerId为空时,字段customerInfo不能为空 |
coupons | List<ManualCouponInfoTO> | 是 | 发券信息 |
ManualCouponCustomerInfoTO
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
mobile | String | 否 | 手机号 |
wxOpenId | String | 否 | 微信openId |
ManualCouponInfoTO
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
couponId | Long | 是 | 券模版id |
count | Integer | 是 | 发券数量,大于0 |
{
"brandId": 2479,
"shopId":247900002,
"customerId": 9527,
"coupons": [
{
"couponId":1234567,
"count":1
}
]
}
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
code | Int | 是 | 返回编码,详见错误码 |
message | String | 是 | 返回信息 |
messageUuid | String | 是 | 消息uuid |
result | List<ManualCouponSendResultVO> | 是 | 返回响应数据,json对象或数组,可空 |
ManualCouponSendResultVO
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
coupInstanceId | Long | 是 | 优惠券ID |
couponId | Long | 是 | 优惠券模板ID |
holderId | Long | 是 | 持有用户ID,同customerId相同 |
{
"code": 0,
"message": "string",
"messageUuid": "string",
"result":[{
"coupInstanceId":11122,
"couponId":12345678,
"holderId":9527
}]
}