文档
测试

查询当前空闲客服列表

GET
/app/customer-service/customerStatus

请求头

参数名
类型
描述
必填
token
String
必填

请求参数

参数名
类型
描述
必填
level
int
客服等级
必填

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填
obj
Object
返回数据
必填
hightLevelFee
String
高级客服收费,单位为整数 金币/分钟
必填
normallevelFee
String
初级客服收费,单位为整数 金币/分钟
必填
tips
String
提示语
必填

说明 / 示例

## `错误返回示例` ```java { "code": 5, "msg": "没有空闲客服", "obj": null } ``` ## `正确返回示例` ```java { "code": 0, "msg": "请求成功", "obj": { "hightLevelFee": "2.00", "normallevelFee": "1.00", "tips": "高级客服标准为 2.00 金币/分钟,初级客服收费标准为 1.00 金币/分钟,请合理选择客服等级。" } } ```