- 统一接口
- 分管控制台/客服坐席管理
- 客服坐席
- 主控
- 分管
- 菜单管理
- 管理员
- 首页
- IP管理
- 坐席主管
- ip2world
- 拉群
- 消息回调POST
- 重新登录POST
- 协议回调更新手机号状态POST
- 物理IP获取POST
- 提供给协议做调用POST
分管查询全部坐席接口
开发中
开发环境
开发环境
POST
/xd/channel/retrieveAgents
/xd/channel/retrieveAgents
请求参数
Header 参数
token
string
必需
Body 参数application/json
managedId
integer
分管Id
agentId
integer
坐席Id
receId
integer
营销Id
示例
{
"managedId": 0,
"agentId": 0,
"receId": 0
}
示例代码
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/channel/retrieveAgents' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"managedId": 0,
"agentId": 0,
"receId": 0
}'
返回响应
🟢200成功
application/json
Body
msg
string
必需
code
integer
必需
data
array [object {5}]
必需
agentId
integer
坐席id
userName
string
坐席名称
imageUrl
null
图片连接
unReadNumber
integer
未读消息数
state
string
用户状态
示例
{
"msg": "操作成功",
"code": 200,
"data": [
{
"agentId": 166,
"userName": "wgp_customer",
"imageUrl": null,
"state": "0"
}
]
}
修改于 2024-11-03 13:35:03