- 获取位置详情
接口
POST https://open.jisuapp.cn/business/Shop/GetEcLocationData
请求参数说明
Content-Type: application/x-www-form-urlencoded
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| access_token | string | Y | 用户授权的唯一票据 |
| location_id | int | Y | 位置id |
返回参数
| 参数 | 类型 | 说明 | |
|---|---|---|---|
| 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": "餐饮位置"
}
}