获取员工的客户群送达情况列表(新)
企业可通过此接口获取员工的客户群送达情况列表
请求方式: POST(HTTPS)
请求地址: https://open.wshoto.com/openapi/task/follow_up/page_query_user_follow_up_info_list
Query参数:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 调用接口凭证 |
Body参数:
{
"template_id": 1254676189925432389,
"user_id":"123",
"current_index": 1,
"page_size": 10
}
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
template_id | long | 是 | 任务ID |
user_id | String | 是 | 跟进人ID |
current_index | int | 否 | 页码。默认值为1 |
page_size | int | 否 | 列表返回长度。默认值为20,最大值为100 |
返回值:
{
"code": 0,
"msg": "请求成功",
"data": {
"total": 1,
"records": [
{
"template_id":123,
"template_type":1,
"user_id":"123",
"target_id":"123",
"follow_time":123,
"follow_status":1
}
]
}
}
参数说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码 |
msg | string | 对返回码的文本描述内容 |
data | object | |
total | long | |
records | object[] | |
template_id | long | 任务id |
template_type | int | 任务类型,1-跟进客户,2-跟进客户群,3-超级群发 |
user_id | string | 员工ID,任务跟进人 |
target_id | string | 目标id(客户id或者客户群id) |
follow_time | long | 跟进时间.时间戳.精度:秒 |
follow_status | int | 目标跟进状态.1-未跟进,2-已跟进 |