查询商户券详情
- 请求方式:post
- 参数类型:application/json
- 请求地址:http://域名/coupon/merchant/get
- 请求参数:
| 参数 |类型 | 是否必填 | 说明 |
| -------- |-------- | ------- | ------------------|
| couponId | integer | 是 | 券ID |
- 返回参数
| 参数 | 类型 |必须 | 说明 |
| --------- | -------- |-------- | ------------------ |
| code | integer | 是 | 状态码 200成功 |
| message | string | 是 | 消息 |
| timestamp | long | 是 | 时间戳 |
| data | object | 是 | 数据 |
| couponId | integer | 是 | 券ID |
| couponName | string | 是 | 券名称 |
| couponType | integer | 是 | 优惠券类型 |
| provideType| integer | 是 | 发放形式 |
| createBy | string | 是 | 创建人 |
| couponStatus| integer | 是 | 券状态(是否审核领取等|
....
- 返回样例
{
"code": 200,
"message": "查询成功!",
"timestamp": 1585218344000,
"data": {
"couponId": 2591,
"couponName": "名称1",
"couponType": 1,
"provideType": 1,
"couponStatus": 1,
"num": 9999,
"storeNoOrName": "深圳市东湖店"
}
}