couponActivity.md 4.72 KB

优惠券活动接口服务定义

相关数据表:yh_events.activity、yh_events.activity_configuration

添加优惠券活动接口

接口名:couponActivity/add

入参


属性名称 类型 可否为空 例子 说明
actName String 六月大促 活动名称
activityType int 1 活动类型1:普通活动 2:APP活动
actUrl string http://baidu.com 活动地址
startTime int 1463480820 活动起始时间
endTime int 1466159220 活动结束时间
bgImageUrl String http://baidu/com 背景图片
shareTitle String YOHO!BUY有货来出招,大六一,变身撩妹达人! 分享标题
shareDescribe String 告别单身狗!恋爱手册之约会大作战! 分享描述
sharePic String http://feature.yoho.cn/0217APPDATING/index.html 分享图片
shareUrl String http://feature.yoho.cn/0217APPDATING/index.html 分享地址
isVerify String N 是否授权
instructions String 告别单身狗!恋爱手册之约会大作战! 活动说明
isNewUser int 0 限制新老用户 0:不限制 1:限制新用户
couponId String 123456,233566 关联的优惠券ID

返回

{
  "code": 200,
  "data": [],
  "md5": "d751713988987e9331980363e24189ce",
  "message": "添加成功."
}

根据ID查询优惠券活动接口

接口名:couponActivity/queryById

入参


属性名称 类型 可否为空 例子 说明
id int 602 优惠券活动ID

返回

{
  "code": 200,
  "data": {
    "actName": "六月大促",
    "actUrl": "",
    "activityType": 0,
    "bgImageUrl": "http://baidu.com/pic",
    "couponId": "",
    "endTime": 1466159220,
    "id": 602,
    "instructions": "",
    "isNewUser": 0,
    "isVerify": "N",
    "shareDescribe": "告别单身狗!恋爱手册之约会大作战",
    "startTime": 1463480820
  },
  "md5": "fd78218ccf947842103f377310483a85",
  "message": "操作成功"
}

更新优惠券活动接口

接口名:couponActivity/update

入参


属性名称 类型 可否为空 例子 说明
id int 602 优惠券活动ID
actName String 六月大促 活动名称
activityType int 1 活动类型1:普通活动 2:APP活动
actUrl string http://baidu.com 活动地址
startTime int 1463480820 活动起始时间
endTime int 1466159220 活动结束时间
bgImageUrl String http://baidu/com 背景图片
shareTitle String YOHO!BUY有货来出招,大六一,变身撩妹达人! 分享标题
shareDescribe String 告别单身狗!恋爱手册之约会大作战! 分享描述
sharePic String http://feature.yoho.cn/0217APPDATING/index.html 分享图片
shareUrl String http://feature.yoho.cn/0217APPDATING/index.html 分享地址
isVerify String N 是否授权
instructions String 告别单身狗!恋爱手册之约会大作战! 活动说明
isNewUser int 0 限制新老用户 0:不限制 1:限制新用户
couponId String 123456,233566 关联的优惠券ID
status int 1 状态

返回

{
  "code": 200,
  "data": [],
  "md5": "d751713988987e9331980363e24189ce",
  "message": "更新成功."
}

查询优惠券活动分页列表

接口名:couponActivity/queryList

入参


属性名称 类型 可否为空 例子 说明
page int 2 页码,默认1
size int 2 每页显示数量,默认10

返回

{
  "code": 200,
  "data": {
    "list": [
      {
        "actName": "新客4.1-4.14",
        "actUrl": "http://huodong.m.yohobuy.com/cuxiao/coupon/newuser5 ",
        "activityType": 1,
        "endTime": 1464689520,
        "id": 560,
        "shareDescribe": "",
        "shareTitle": "",
        "shareUrl": "",
        "startTime": 1463479920,
        "status": 1
      },
      {
        "actName": "夏日新品节1",
        "actUrl": " ",
        "activityType": 2,
        "endTime": 1461772800,
        "id": 499,
        "shareDescribe": "测试测试",
        "shareTitle": "测试",
        "shareUrl": "",
        "startTime": 1460014500,
        "status": 1
      }
    ],
    "page": 2,
    "size": 2,
    "total": 257,
    "totalPage": 129
  },
  "md5": "1a84d2157829d541df4b5ec31412bbd3",
  "message": "操作成功"
}