On this page
新增优惠券
接口URL
请求方式
POST
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
token | eyj...Nj | String | 是 | 用户token |
schoolid | 11 | Integer | 是 | 网校id |
请求Body参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
type | course | String | 是 | 类型:course课程,column专栏 |
goods_id | 4 | Integer | 是 | 课程/专栏id |
condition | 100 | Integer | 是 | 优惠券条件(满多少元) |
price | 20.00 | Float | 是 | 优惠券价格 |
c_num | 100 | Integer | 是 | 限制数量 |
status | 1 | Integer | 是 | 状态:0禁用1启用 |
start_time | 2021-04-03 01:00:00 | DateTime | 是 | 优惠券开始时间 |
end_time | 2021-04-04 01:00:00 | DateTime | 是 | 优惠券结束时间 |
成功响应示例
json5
{
"msg": "ok",
"data": {
"received_num": 0,
"used_num": 0,
"id": 2,
"type": "course",
"goods_id": 4,
"condition": 100,
"price": 20,
"c_num": 100,
"status": 1,
"start_time": "2021-04-02T17:00:00.000Z",
"end_time": "2021-04-03T17:00:00.000Z",
"school_id": 11,
"updated_time": "2021-03-25T16:06:53.649Z",
"created_time": "2021-03-25T16:06:53.649Z"
},
"code": 20000
}