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