简要描述:
- 获取创建的优惠券二维码列表
请求域名:
- http://xx.com
请求URL:
POST:plugin.coupon-qr.api.index.getList
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
name | 是 | sting | 优惠券名称 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "",
"data": {
"total": 1,
"per_page": 15,
"current_page": 1,
"last_page": 1,
"next_page_url": null,
"prev_page_url": null,
"from": 1,
"to": 1,
"data": [
{
"id": 1,
"created_at": "2022-03-06 05:40:56",
"coupon_name": "测试"
}
]
}
}
错误时返回:
{
"result": 0,
"msg": "",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
created_at | string | 时间 |
coupon_name | array | 名称 |