|
|
优惠券活动接口服务定义
|
|
|
---------------------
|
|
|
相关数据表:yh_events.activity、yh_events.activity_configuration
|
|
|
|
|
|
## 添加优惠券活动接口
|
|
|
|
|
|
> 接口名:couponActivity/add
|
|
|
> 相关数据表:yh_events.activity、yh_events.activity_configuration
|
|
|
|
|
|
### 入参
|
|
|
|
...
|
...
|
@@ -39,3 +39,80 @@ |
|
|
|
|
|
```
|
|
|
|
|
|
## 根据ID查询优惠券活动接口
|
|
|
|
|
|
> 接口名:couponActivity/queryById
|
|
|
|
|
|
### 入参
|
|
|
|
|
|
-------------------------
|
|
|
|属性名称|类型|可否为空|例子|说明|
|
|
|
|--------|----|--------|----|----|
|
|
|
|id|int|否|602|优惠券活动ID|
|
|
|
---------------------
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
``` json
|
|
|
{
|
|
|
"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|背景图片|
|
|
|
|shareTitile|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|
|
|
|
---------------------
|
|
|
|
|
|
### 返回
|
|
|
|
|
|
``` json
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data": [],
|
|
|
"md5": "d751713988987e9331980363e24189ce",
|
|
|
"message": "更新成功."
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
...
|
...
|
|