- 获取位置列表信息
接口
POST https://open.jisuapp.cn/business/Shop/GetEcLocationDataList
请求参数说明
Content-Type: application/x-www-form-urlencoded
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| access_token | string | Y | 用户授权的唯一票据 |
| page | int | Y | 页码 |
| page_size | int | Y | 每页数据条数 |
返回参数
| 参数 | 类型 | 说明 | |
|---|---|---|---|
| current_page | int | 当前页数 | |
| count | int | 位置总数 | |
| total_page | int | 总页数 | |
| id | string | 位置id | |
| title | string | 位置 | |
| description | string | 位置备注 | |
| qrcode | string | 位置小程序维码 | |
| status | int | 开启状态 0开启 1关闭 | |
| is_deleted | int | 是否删除 0未删除 1删除 |
参数返回示例
{
"status": 0,
"data": [
{
"id": "19",
"app_id": "AAAAA",
"title": "餐饮位置",
"qrcode": "https://img.zhichiwangluo.com/zcimgdir/thumb/5cfe070057004.jpg",
"status": "0",
"is_deleted": "0",
"add_time": "1560151806",
"update_time": "1563344452",
"description": "餐饮位置"
},
{
"id": "9",
"app_id": "AAAAA",
"title": "fff",
"qrcode": "https://img.zhichiwangluo.com/zcimgdir/thumb/5ce64a104a3f5.jpg",
"status": "0",
"is_deleted": "0",
"add_time": "1558582410",
"update_time": "1558582410",
"description": "fff"
},
],
"is_more": 0,
"current_page": 1,
"count": "3",
"total_page": 1
}