- 统一接口
- 分管控制台/客服坐席管理
- 客服坐席
- 主控
- 总号池调配
- 注册账号
- 服务器
- 任务观察
- 号商
- 规则设定
- 招呼/营销/推送参数
- 动态发送
- 个人版
- 钱包管理
- 分管
- 菜单管理
- 管理员
- 首页
- IP管理
- 坐席主管
- ip2world
- 拉群
- 消息回调POST
- 重新登录POST
- 协议回调更新手机号状态POST
- 物理IP获取POST
- 提供给协议做调用POST
查询回调
开发中
开发环境
开发环境
POST
/kk/accountprocess/selectAccountCount
/kk/accountprocess/selectAccountCount
请求参数
Header 参数
token
string
可选
Body 参数application/json
isOnline
string
0是上线 1是离线
示例
{
"isOnline": ""
}
示例代码
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/kk/accountprocess/selectAccountCount' \
--header 'token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"isOnline":""
}'
返回响应
🟢200成功
application/json
Body
msg
string
必需
code
integer
必需
data
object
必需
onlineCount
integer
上线数量
outlineCount
integer
离线数量
unknownCount
integer
未知数量
abnormalCount
integer
异常数量
totalCount
integer
总数
operandCount
integer
操作数量
示例
{
"msg": "操作成功",
"code": 200,
"data": {
"totalCount": 2,
"operandCount": 2,
"onlineCount": 0,
"outlineCount": 0,
"unknownCount": 2,
"abnormalCount": 0
}
}
修改于 2023-08-02 22:27:16