簡要描述
請求url
https://www.商城域名.com/index.php?s=/api/coupon/list
請求方式
是否需授權登錄
請求header
參數名 |
類型 |
是否必須 |
示例值 |
說明 |
storeId |
int |
必填 |
10001 |
商城ID |
platform |
string |
必填 |
H5 |
當前請求的客戶端(APP、小程序、H5等) |
Access-Token |
string |
選填 |
- |
當前登錄用戶的 Token |
返回示例
{
"status": 200,
"message": "success",
"data": {
"list": [
{
"coupon_id": 10009,
"name": "折扣券",
"coupon_type": 20,
"reduce_price": "0.00",
"discount": 8.8,
"min_price": "200.00",
"expire_type": 10,
"expire_day": 7,
"start_time": null,
"end_time": null,
"apply_range": 10,
"apply_range_config": [],
"describe": "",
"sort": 100,
"is_receive": false,
"state": {
"text": "正常",
"value": 1
}
},
{
"coupon_id": 10007,
"name": "滿100減10",
"coupon_type": 10,
"reduce_price": "10.00",
"discount": 0,
"min_price": "100.00",
"expire_type": 10,
"expire_day": 999,
"start_time": null,
"end_time": null,
"apply_range": 10,
"apply_range_config": [],
"describe": "",
"sort": 100,
"is_receive": false,
"state": {
"text": "正常",
"value": 1
}
}
]
}
}
返回參數
參數名 |
類型 |
示例值 |
說明 |
status |
int |
200 |
請求狀態(200:請求成功;500:請求錯誤/失敗) |
message |
string |
success |
請求結果的信息,默認為 success |
data |
object |
- |
返回的業務數據 |
data 參數
參數名 |
類型 |
示例值 |
說明 |
list |
array |
- |
優惠券列表 |
data.list 參數
參數名 |
類型 |
示例值 |
說明 |
coupon_id |
int |
10009 |
優惠券ID |
name |
string |
折扣券 |
優惠券名稱 |
coupon_type |
int |
20 |
優惠券類型 (10滿減券 20折扣券) |
reduce_price |
string |
0.00 |
減免金額(僅滿減券) |
discount |
number |
8.8 |
折扣率,0-100(僅折扣券) |
min_price |
string |
200.00 |
最低消費金額 |
expire_type |
int |
10 |
到期類型 (10領取后生效 20固定時間) |
expire_day |
int |
7 |
有效天數(expire_type為10) |
start_time |
null |
null |
開始時間(expire_type為20) |
end_time |
null |
null |
結束時間(expire_type為20) |
apply_range |
int |
10 |
適用范圍 (10全部商品 20指定商品) |
apply_range_config |
array |
- |
適用范圍配置 (json格式) |
describe |
string |
- |
優惠券描述 |
sort |
int |
100 |
排序 (數字越小越靠前) |
is_receive |
boolean |
false |
是否已領?。ó斍暗卿浻脩簦?/td>
|
state |
object |
- |
領取狀態 |
data.list.state 參數
參數名 |
類型 |
示例值 |
說明 |
text |
string |
正常 |
文字 |
value |
int |
1 |
值 |