查询门店活码指定分组的门店列表
企业可通过此接口来查询已创建的分组的详情
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/qrcode/storeQrcode/page_query_group_store_qrcode_info_list
Query参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 调用接口凭证 |
Body参数:
{
"current_index": 1,
"page_size": 20,
"store_qrcode_group_id": 14,
"store_name": "test_28e4f780c3c2",
"qrcode_status": 1
}
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
current_index | int | 是 | 页码。默认值为1 |
page_size | int | 是 | 列表返回长度。默认值为20,最大值为100 |
store_qrcode_group_id | long | 是 | 门店活码分组id |
store_name | string | 否 | 门店名称 |
qrcode_status | int | 否 | 关联活码状态;0:未关联, 1:正常, 2:异常 |
返回值:
{
"code": 0,
"msg": "请求成功",
"data": {
"total":10,
"records":[
{
"store_qrcode_group_id": 0,
"store_id": 0,
"store_name": "store_name_754186f35b5f",
"store_address": "store_address_e99c4647a64c",
"qrcode_id": 0,
"qrcode_type": "qrcode_type_c5845d0df9ef",
"qrcode_name": "qrcode_name_8d66d0aa9f86",
"qrcode_status": 0
}
]
},
"sub_code": "00000"
}
返回说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 出错返回码,为0表示成功,非0表示调用失败 |
msg | string | 返回码描述 |
data | object | 业务对象 |
store_qrcode_group_id | long | 门店活码分组id |
store_id | long | 门店id |
store_name | string | 门店名称 |
store_address | string | 门店地址 |
qrcode_id | long | 关联活码id |
qrcode_type | string | 关联活码类型 , staff-员工活码, groupChat-群活码, oldGroup-识客群码 |
qrcode_name | string | 关联活码名称 |
qrcode_status | int | 关联活码状态 0:未关联, 1:正常, 2:异常 |