couponsBroadcast.md 3.14 KB

#用户优惠券接口

接口列表

接口名称 接口描述
app.coupons.sendCouponsBroadcast 直播领优惠券
app.coupons.getCouponsBroadcastList 直播-用户在此房间获得的优惠券列表
app.coupons.queryBroadCouponList 批量查询优惠券模板信息

接口描述

1、直播领优惠券(app.coupons.sendCouponsBroadcast)

请求参数

Param Name Param Type Required Param Value Desc
method String true app.coupons.sendCouponsBroadcast 请求方法
uid int true 8041876 用户ID
counponId int true 14386 券id

响应内容

{
    "alg": "SALT_MD5",
    "code": 200,
    "data": {
        "beginTime": "1478188800",
        "couponCode": "aog3x9651g1fts",
        "couponId": 14450,
        "couponName": "直播红包-Maelk2",
        "endTime": "1487174460"
    },
    "md5": "a5d60a9118baf10f6b7d3d042cd3e1ae",
    "message": "操作成功"
}

2、直播-用户在此房间获得的优惠券列表(app.coupons.getCouponsBroadcastList)

请求参数

Param Name Param Type Required Param Value Desc
method String true app.coupons.getCouponsBroadcastList 请求方法
uid int true 8041876 用户ID
couponIds int true 14378,14388 券id集合,以逗号分隔

响应内容

{
  "alg": "SALT_MD5",
  "code": 200,
  "data": [
    {
      "couponCode": "aofdvecx4x78lp",
      "couponId": 14378,
      "couponName": "名称:nike低于三折&限量 5*4",
      "couponType": 1,
      "endTime": 1477584000,
      "startTime": 1476633600
    },
    {
      "couponCode": "aofduzzx4x78lo",
      "couponId": 14388,
      "couponName": "ccc测试",
      "couponType": 1,
      "endTime": 1477756800,
      "startTime": 1476979200
    }
  ],
  "md5": "e7caae7bf55fb405b367ea4228ddf5d2",
  "message": "操作成功"
}

3、批量查询优惠券模板信息(app.coupons.queryBroadCouponList)

请求参数

Param Name Param Type Required Param Value Desc
method String true app.coupons.queryBroadCouponList 请求方法
couponIds int true 14378,14388 券id集合,以逗号分隔

响应内容

{
  "alg": "SALT_MD5",
  "code": 200,
  "data": [
    {
      "couponCode": "aofdvecx4x78lp",
      "couponId": 14378,
      "couponName": "名称:nike低于三折&限量 5*4",
      "couponType": 1,
      "endTime": 1477584000,
      "startTime": 1476633600
    },
    {
      "couponCode": "aofduzzx4x78lo",
      "couponId": 14388,
      "couponName": "ccc测试",
      "couponType": 1,
      "endTime": 1477756800,
      "startTime": 1476979200
    }
  ],
  "md5": "e7caae7bf55fb405b367ea4228ddf5d2",
  "message": "操作成功"
}