获取企业的云会议室列表
GET
/rsc/api/v2/admin/virtual-rooms
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
pageNo
integer
第几页,默认第一页
示例值:
1
pageSize
integer
可选
示例值:
10
keyword
string
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/rsc/api/v2/admin/virtual-rooms'
返回响应
🟢200成功
application/json
Body
云会议室分页列表
data
array[object (VirtualRoomSummaryResponse) {10}]
数据
isUsed
boolean | null
必需
id
string | null
云会议室id
code
string | null
会议号
name
string | null
会议室名称
password
string | null
会议室名称
type
enum<integer> | enum<null>
必需
枚举值:
123
uid
string | null
用户id
uidType
enum<integer> | enum<null>
设备id
枚举值:
0123
companyId
string | null
企业id
maxEndpointCount
integer
可选
默认值:
-1
pageSize
integer
单页数量大小
pageNo
integer
当前页下标
pages
string
总页数
total
string
总数
示例
{
"data": [
{
"isUsed": false,
"id": "",
"code": "",
"name": "",
"password": "",
"type": 0,
"uid": "",
"uidType": 0,
"companyId": "",
"maxEndpointCount": 0
}
],
"pageSize": 0,
"pageNo": 0,
"pages": "",
"total": ""
}