获取会议室详情
获取会议室详情
1. 接口描述
接口名称:
/confopenapi/room/getRoomById
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
roomId | 是 | int | 全时会议室ID |
3. 示例
传参示例
{
"roomId":88415897
}
4. 返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | int | 0:成功,非0失败 |
result | json字符串 | 结果 |
result 参数说明
参数名 | 类型 | 说明 |
---|---|---|
roomId | int | 会议id |
status | int | 会议室状态 1:启用(默认) ,2:禁用 |
name | string | 会议室名称(唯一,不能重复) |
capacity | int | 会议室容量 |
city | string | 所在城市 |
location | string | 具体楼宇 |
floor | int | 楼层 |
logoUrl | string | 会议室图片 |
detailAddress | string | 详细地址 |
approvalType | string | 审批类型 0:不需要审批 1:需要审批 |
members | object | 指定使用者列表,可以是组织、用户,{”orgIds”:[1000,2000],”userIds”:[2100]} |
roomType | int | 会议室类型 1:wps, 0:全时会议室 |
thirdRoomId | string | 第三方会议室ID |
members
参数名 | 类型 | 说明 |
---|---|---|
orgIds | int array | 组织id数组 |
userIds | int array | 账号userid数组 |
返回示例
{
"status": 0,
"result": {
"roomId": 13770,
"name": "2023-12-07 14:30:06会议室-2",
"capacity": 10,
"city": "北京",
"location": "科技大厦",
"floor": 13,
"logoUrl": "",
"detailAddress": "",
"status": 1,
"deviceIds": null,
"approvalType": 0,
"members": null,
"devices": [
{
"deviceId": 59963,
"name": "门牌设备001",
"status": 1,
"label": "30:1F:9A:74:F3:9C",
"updateTime": 1702013295,
"createTime": 1672993291
}
]
},
"request_id": "roomadminserver-2887038752-1702014836.729986819.880",
"reqid": "confopenapiserver-172.10.240.250-1702014836.696863029.59",
"timestamp": 1702014836696,
"request_duration": "158.895823ms"
}