💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### **查询营业厅内的坐席数** ~~~ String getAgentCountArea(int areaId) ~~~ **接口说明** 用户查询当前营业厅内的坐席总数以及空闲坐席数 **返回值** 包含当前营业厅内的坐席总数以及空闲坐席数的对象 **接口参数简介** | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | areaId | int | 营业厅ID | 是 | **示例代码** ~~~ JSONObject jsonObject = AnyChatSDK.getInstance().getAgentCount(String.valueOf(agentId)); //坐席总数 int agentCount = jsonObject.getInt("agentCount"); //空闲坐席数 int idleAgentCount = jsonObject.getInt("idleAgentCount"); ~~~