查询控制器列表
接口描述
描述:查询企业下的控制器列表,目前暂不支持 OAuth2.0 鉴权访问。
调用方式:GET
接口请求域名:
https://api.meeting.qq.com/v1/meeting-rooms-monitor/device-controller-info
输入参数
参数名称 | 是否必须 | 备注 |
---|---|---|
controller_name | 否 | 需要查询的设备名称(支持模糊匹配查找),如需获取全量列表,则不需要传入。 |
page | 否 | 页码,从1开始,默认1。 |
page_size | 否 | 分页大小,从1开始,最大50,默认20。 |
输出参数
参数名称 | 类型 | 是否必须 | 备注 |
---|---|---|---|
total_count | Number | 必须 | 分页查询返回数据总数。 |
current_page | Number | 必须 | 分页查询返回当前页码。 |
current_size | Number | 必须 | 分页查询返回单页数据条数。 |
total_page | Number | 必须 | 分页查询返回分页总数。 |
controller_info_list | Object [] | 必须 | 控制器信息对象。 |
控制器信息对象
名称 | 类型 | 是否必须 | 备注 |
---|---|---|---|
rooms_id | String | 必须 | Rooms ID。 |
meeting_room_name | String | 必须 | 会议室名称。 |
meeting_room_location | String | 必须 | 会议室地址。 |
controller_name | String | 必须 | 控制器名称。 |
manufacture_name | String | 必须 | 厂商。 |
controller_model | String | 必须 | 控制器型号。 |
app_version | String | 必须 | 应用程序版本。 |
status | String | 必须 | 设备状态:<0:离线> <1:在线> |
framework_version | String | 必须 | 固件版本。 |
ip_address | String | 必须 | IP 地址。 |
mac_address | String | 必须 | MAC 地址。 |
cpu_type | String | 必须 | CPU 类型。 |
cpu_usage | String | 必须 | CPU 当前占有率。 |
network_type | String | 必须 | 网络类型。 |
mem_usage | String | 必须 | 内存使用大小。 |
示例
输入示例
GET
https://api.meeting.qq.com/v1/meeting-rooms-monitor/device-controller-info?controller_name=igelschen
{
"total_count": 6,
"current_page": 1,
"current_size": 6,
"total_page": 1,
"controller_info_list": [{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nxxxxxxeng-test123",
"manufacture_name": "Apple",
"controller_model": "Apple",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "iOS 15.2.1",
"ip_address": "x.x.x.x",
"mac_address": "x:x:x:x:x:x",
"cpu_type": "ARM64",
"cpu_usage": "1.7",
"network_type": "wifi",
"mem_usage": "3.6GB",
"rooms_id": "14411xxxxxxxx59565"
},
{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nigxxxxxeng-test123",
"manufacture_name": "Apple",
"controller_model": "Apple",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "iOS 14.0.1",
"ip_address": "x.x.x.x",
"mac_address": "x:x:x:x:x:x",
"cpu_type": "ARM64",
"cpu_usage": "2.3",
"network_type": "wifi",
"mem_usage": "2.9GB",
"rooms_id": "14411xxxxxxxx59565"
},
{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nigxxxxxeng-test123",
"manufacture_name": "LENOVO",
"controller_model": "LENOVO",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "Windows Windows_10_Desktop",
"ip_address": "x.x.x.x",
"mac_address": "40-xx-xx-xx-xx-ef",
"cpu_type": "",
"cpu_usage": "0",
"network_type": "wifi",
"mem_usage": "8022GB",
"rooms_id": "14411xxxxxxxx59565"
},
{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nigxxxxxeng-test123",
"manufacture_name": "LENOVO",
"controller_model": "LENOVO",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "Windows Windows_10_Desktop",
"ip_address": "x.x.x.x",
"mac_address": "40-xx-xx-xx-xx-ef",
"cpu_type": "",
"cpu_usage": "0",
"network_type": "wifi",
"mem_usage": "8022GB",
"rooms_id": "14411xxxxxxxx59565"
},
{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nigxxxxxeng-test123",
"manufacture_name": "LENOVO",
"controller_model": "LENOVO",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "Windows Windows_10_Desktop",
"ip_address": "x.x.x.x",
"mac_address": "40-xx-xx-xx-xx-ef",
"cpu_type": "",
"cpu_usage": "0",
"network_type": "wifi",
"mem_usage": "8022GB",
"rooms_id": "144115264330461224"
},
{
"meeting_room_name": "nigxxxxxeng-test123",
"meeting_room_location": "西安-新长安广场-19",
"controller_name": "nigxxxxxeng-test123",
"manufacture_name": "Apple",
"controller_model": "Apple",
"app_version": "x.x.x.x",
"status": "0",
"framework_version": "iOS 15.2.1",
"ip_address": "x.x.x.x",
"mac_address": "40-xx-xx-xx-xx-ef",
"cpu_type": "ARM64",
"cpu_usage": "24.9",
"network_type": "wifi",
"mem_usage": "3.6GB",
"rooms_id": "14411xxxxxxxx59565"
}
]
}
下载 查询控制器列表.pdf
文章内容是否对您有帮助?
有帮助
无帮助
能否告知我们这篇文章的问题?(选填)