获取任务统计详情
企业可通过此接口获取跟进任务或超级群发统计详情
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/task/follow_up/query_task_statistics_info
Query参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 调用接口凭证 |
Body参数:
{
"template_id": 1254676189925432389
}
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
template_id | long | 是 | 任务ID |
返回值:
{
"code": 0,
"msg": "请求成功",
"data": {
"template_id": 12343,
"template_type": 1,
"template_name": "test_5fddc23b3abd",
"plan_target_qty": 1,
"followed_target_qty": 1,
"plan_staff_qty": 1,
"no_executed_staff_qty": 1,
"executing_staff_qty": 1,
"executed_staff_qty": 1
}
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | string | 对返回码的文本描述内容 |
data | object | |
template_id | long | 任务id |
template_type | int | 任务类型.1-跟进客户,2-跟进客户群,3 超级群发 |
template_name | string | 任务名称 |
plan_target_qty | int | 任务预计跟进客户数/客户群数 |
followed_target_qty | int | 任务已跟进客户数/客户群 |
plan_staff_qty | int | 预计执行员工数 |
no_executed_staff_qty | int | 未执行员工数 |
executing_staff_qty | int | 正在执行中员工数 |
executed_staff_qty | int | 已执行员工数 |