- 统一接口
- 分管控制台/客服坐席管理
- 客服坐席
- 主控
- 分管
- 菜单管理
- 管理员
- 首页
- IP管理
- 坐席主管
- 聊天通道
- 坐席统计
- 坐席转移配置
- 任务列表
- ip2world
- 拉群
- 消息回调POST
- 重新登录POST
- 协议回调更新手机号状态POST
- 物理IP获取POST
- 提供给协议做调用POST
坐席主管查询任务列表
开发中
开发环境
开发环境
POST
/xd/direct/fetchTaskForLead
/xd/direct/fetchTaskForLead
请求参数
Header 参数
token
string
可选
Body 参数application/json
state
string
状态 0:等待中 1:执行中 2:执行完成
startDate
string
起始时间
endDate
string
结束时间
示例
{
"state": "",
"startDate": "",
"endDate": ""
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8080/xd/direct/fetchTaskForLead' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"state":"",
"startDate":"",
"endDate":""
}'
返回响应
🟢200成功
application/json
Body
total
integer
必需
data
array [object {9}]
必需
id
integer
必需
identityName
string
用户数据标识名称
identityUrl
string
用户数据标识路径
identityCount
integer
用户数据条数
state
string
状态 0:等待中 1:执行中 2:执行完成
actionDate
string
执行时间
actionNumber
integer
执行批次
actionInterval
string
执行间隔 0-无间隔 1-30分钟 2-60分钟
createTime
string
创建时间
code
integer
必需
msg
string
必需
示例
{
"total": 7,
"data": [
{
"id": 1,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 03:51:00"
},
{
"id": 2,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 03:51:00"
},
{
"id": 3,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 03:55:04"
},
{
"id": 4,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 04:04:30"
},
{
"id": 5,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 04:07:46"
},
{
"id": 6,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 04:08:51"
},
{
"id": 7,
"identityName": "营销用户100.txt",
"identityUrl": "/profile/upload/2024/11/09/88f70ae9-786e-4838-8a9c-ec7dc337011e_营销用户100.txt",
"identityCount": 100,
"state": "0",
"actionDate": "2014-11-09 12:00",
"actionNumber": 5,
"actionInterval": "2",
"createTime": "2024-11-09 04:10:20"
}
],
"code": 200,
"msg": "查询成功"
}
修改于 2024-11-08 18:55:10