- 统一接口
- 分管控制台/客服坐席管理
- 客服坐席
- 主控
- 分管
- 菜单管理
- 管理员
- 首页
- IP管理
- 坐席主管
- 聊天通道
- 坐席统计
- 坐席转移配置
- 任务列表
- ip2world
- 拉群
- 消息回调POST
- 重新登录POST
- 协议回调更新手机号状态POST
- 物理IP获取POST
- 提供给协议做调用POST
新增任务
开发中
开发环境
开发环境
POST
/xd/direct/addTaskForLeas
/xd/direct/addTaskForLeas
请求参数
Header 参数
token
string
可选
Body 参数application/json
actionDate
string
执行时间
actionNumber
string
执行批次 1到5
actionInterval
string
执行间隔 0-无间隔 1-30分钟 2-60分钟
customerList
array[string]
坐席列表
identityUrl
string
用户数据标识路径
示例
{
"actionDate": "",
"actionNumber": "",
"actionInterval": "",
"customerList": [],
"identityUrl": ""
}
示例代码
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/addTaskForLeas' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"actionDate":"",
"actionNumber":"",
"actionInterval":"",
"customerList":[],
"identityUrl":""
}'
返回响应
🟢200成功
application/json
Body
msg
string
必需
code
integer
必需
data
boolean
必需
示例
{
"msg": "操作成功",
"code": 200,
"data": true
}
修改于 2024-11-08 21:46:50