简要描述:
- 门店优惠券列表
请求域名:
- http://xx.com
请求URL:
GET:plugin.store-cashier.frontend.store.couponList.index
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
page | 否 | int | 分页 - 页码 |
store_id | 是 | int | 获取门店专属优惠券 |
返回示例:
正确时返回:
{
"result":1,
"msg":"成功",
"data":{
"current_page":1,
"data":[
{
"id":13,
"name":"10000元代金券",
"coupon_method":1,
"deduct":"10000.00",
"discount":"0.00",
"enough":60000,
"available_count ":1
}
],
"first_page_url":"http://www.yunzong.com/addons/yun_shop/api.php?page=1",
"from":1,
"last_page":1,
"last_page_url":"http://www.yunzong.com/addons/yun_shop/api.php?page=1",
"next_page_url":null,
"path":"http://www.yunzong.com/addons/yun_shop/api.php",
"per_page":15,
"prev_page_url":null,
"to":1,
"total":1
}
}
错误时返回:
{
"result": 0,
"msg": "获取失败"
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int(10) | 优惠券id |
name | string | 优惠券名 |
coupon_method | int | 1立减2折扣 |
deduct | float | 立减金额 |
discount | float | 折扣 |
enough | float | 限额 |
received | int | 1已领取2未领取 |
available_count | int | 可领张数 |
receive_count | int | 已领张数 |
备注:
- 更多返回错误代码请看首页的错误代码描述