按照会议室类型分页查询会议室资源详情(目前仅支持企业会议室)
默认接口请求频率限制:20次/秒
REST URL
GET https://sdk.xylink.com/api/rest/external/{version}/conference/info?enterpriseId=XXX&pageIndex=xxx&pageSize=xxx&deptCode=xxx&includeSubDept=true&conferenceType=enterprise&signature=XXX
请求参数说明
参数 | 参数类型 | 参数位置 | 必须 | 默认值 | 说明 | 初始平台 |
version | String | Path | 是 | 无 | 传v1即可 | 公有云 |
enterpriseId | String | Query | 是 | 无 | 企业ID,通过管理平台-云视讯API获得 | 公有云 |
signature | String | Query | 签名鉴权2.0:否 | 无 | API签名,参见签名规则 | 公有云 |
pageIndex | int | Query | 否 | 0 | 页码,默认为0 | 公有云 |
pageSize | int | Query | 否 | 20 | 每页大小,默认为20,最大不能超过100 | 公有云 |
deptCode | String | Query | 否 | 无 | 部门code, 分级分权情况下 不传:默认赋值为clientid关联部门 传:必须是clientid关联部门或其子部门 非分级分权情况下 不传:查询企业所有 传:查询传入的部门 | 公有云 |
includeSubDept | boolean | Query | 否 | true | 在设置deptCode的情况下可以设置是否查询子部门 | 公有云 |
conferenceType | String | Query | 否 | enterprise | 需要查询的会议室类型,目前只支持enterprise(此类型包含群组会议室) | 公有云 |
返回结果示例:
{
"page": 0,
"rows": 2,
"pageTotal": 2,
"rowsTotal": 4,
"list": [
{
"conferenceNumber": "9082312211",
"displayName": "lisx-001",
"deptName": "张的txdev企业",
"conferenceSessionType": "共享云会议室",
"conferenceSessionDesc": "共享10方",
"expireTime": 1798214399999,
"state": "IDLE"
},
{
"conferenceNumber": "9082682438",
"displayName": "list-+.顺",
"deptName": "张的txdev企业",
"conferenceSessionType": "共享云会议室",
"conferenceSessionDesc": "共享10方",
"expireTime": 1798214399999,
"state": "IDLE"
}
]
}
成功时返回结果数据,失败时返回小鱼RESTAPI错误码
返回参数说明
参数名称 | 说明 |
conferenceNumber | 会议室号码 |
displayName | 会议室名称 |
deptName | 部门名称 |
conferenceSessionType | 类型 |
conferenceSessionDesc | 会议室方数 |
expireTime | 服务到期时间 |
state | 会议室状态 IDLE:空闲 INCALL:呼叫中 |