获取员工执行情况列表
企业可通过此接口获取跟进任务或者超级群发执行情况列表
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/task/follow_up/page_query_user_execute_info_list
Query参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 调用接口凭证 |
Body参数:
{
"template_id": 1254676189925432389,
"current_index": 1,
"page_size": 10
}
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
template_id | long | 是 | 任务ID |
current_index | int | 否 | 页码。默认值为1 |
page_size | int | 否 | 列表返回长度。默认值为20,最大值为100 |
返回值:
{
"code": 0,
"msg": "请求成功",
"data": {
"total": 1,
"records": [
{
"id":123,
"template_id":123,
"status":1,
"user_id":"123",
"plan_target_qty":123,
"followed_target_qty":123,
"no_follow_target_qty":123,
"complete_rate":123
}
]
}
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | string | 对返回码的文本描述内容 |
data | object | |
total | long | |
records | object[] | |
id | long | 主键 |
template_id | long | 跟进任务id |
status | int | 任务执行状态;1-未执行,2-执行中,3-完成执行 |
user_id | string | 员工ID,任务跟进人 |
plan_target_qty | int | 计划跟进客户/客户群数量 |
followed_target_qty | int | 跟进完成的客户/客户群数量 |
no_follow_target_qty | int | 未跟进完成的客户/客户群数量 |
complete_rate | int | 完成率.参数范围:0-100 |