• 开发者平台
  • >
  • 餐饮文档中心

券模板发券接口收费

(下行接口)客如云提供通过券模板发券接口

授权方式:门店授权

请求描述

HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI:  /open/v1/crm/coupon/manualSend

请求参数

1.公共参数

详情可查看【公共说明】中的公共参数模块

2.业务参数

参数名 类型 是否必填 参数描述
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

业务示例(JSON)

{
  "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相同

响应示例(JSON)

{
  "code": 0,
  "message": "string",
  "messageUuid": "string",
  "result":[{
    "coupInstanceId":11122,
    "couponId":12345678,
    "holderId":9527
  }]
}
目录