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

优惠券核销通知接口

(上行接口)该接口是客如云优惠券核销后,通知第三方核销信息接口

授权方式:门店授权

请求描述

HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI:  《第三方回调地址》

业务参数

参数名 字段名 类型 是否必填 字段描述
券规则ID couponRuleId Long 券规则唯一标示
券实例ID couponId Long 券实例唯一标示
品牌ID brandId Long 品牌唯一标示
验券门店Id shopId Long 验券门店唯一标示
验券来源 checkSource Integer 1:mobile,2:后台,3:微信,4:pos,5:自助
验券时间 checkTime Long 验券时间,毫秒数时间戳
验券人Id checkerId Long 验券人Id
验券人名称 checkerName String 验券人名称
消费人数 consumePersons Integer 消费人数
创建时间 createTime Long 创建时间,毫秒数时间戳
验券记录Id id Long 验券记录Id
减免金额 offerValue BigDecimal 减免金额
订单id orderUUId String 订单ID
消费金额 payAmount BigDecimal 消费金额
更新时间 updateTime Long 更新时间,毫秒数时间戳

请求示例代码

{
  "couponRuleId": 123456789,
  "couponId": 123456789,
  "brandId": 123456789,
  "shopId": 123456789,
  "checkSource":1,
  "checkTime":123456789,
  "checkerId":123456789,
  "checkerName": "张三",
  "consumePersons": 2,
  "createTime": 123456789,
  "id":1,
  "offerValue":3,
  "orderUUId":123456789,
  "payAmount":30,
  "updateTime":123456789
}

响应参数

参数名 参数类型 是否必填 参数描述
code Integer 错误码;0:成功;其他值认为失败
message string 返回信息
messageUuid string 错误信息序列码
result null

响应示例代码

{
    "result": null,
    "code": 0,
    "message": "成功[OK]",
    "messageUuid": "964644b070104fd0985b4a59023813bb",
    "apiMessage": "成功[OK]"
}
目录