获取客户群活码统计概览
企业可通过此接口获取客户群活码相关统计指标
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/qrcode/get_chat_group_qrcode_count
Query参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 调用接口凭证 |
Body参数:
{
"chat_group_qrcodes": [
"fake_data"
]
}
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
chat_group_qrcodes | array | 是 | 客户群活码id list,集合最大长度50,接口调用方确保活码ID有效性,该参数直接影响数据筛选结果 |
返回值:
{
"code": 0,
"msg": "请求成功",
"data": [
{
"chat_group_qrcode": "fake_data",
"scan_qrcode_sum": 71,
"join_chat_group_total_people": 63,
"quit_chat_group_total_people": 74
}
]
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码,0-请求成功, |
msg | string | 对返回码的文本描述内容 |
data | array | 集合对象 |
chat_group_qrcode | string | 客户群活码ID |
scan_qrcode_sum | int | 扫码群二维码总次数 |
join_chat_group_total_people | int | 进入群总客户数 |
quit_chat_group_total_people | int | 退出群总客户数 |