企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
### **查询营业厅内的坐席数** ~~~ getAgentCountArea(areaId: number): string ~~~ **接口说明** 用户查询当前营业厅内的坐席总数以及空闲坐席数 **返回值** 包含当前营业厅内的坐席总数以及空闲坐席数的对象 **接口参数简介** | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | areaId | number | 营业厅ID | 是 | **示例代码** ~~~ JSONObject jsonObject = AnyChatSDK.getInstance().getAgentCount(agentId); //坐席总数 let agentCount = jsonObject["agentCount"]; //空闲坐席数 let idleAgentCount = jsonObject["idleAgentCount"]; ~~~