获取会议室详情
获取会议室详情
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 |
name | string | 会议室名称 |
devices | json | 设备列表 |
devices参数说明
参数名 | 类型 | 说明 |
---|---|---|
deviceId | int | 设备ID |
name | string | 设备名称 |
返回示例
{
"status": 0,
"result": {
"roomId": 13770,
"name": "2023-12-07 14:30:06会议室-2",
"capacity": 10,
"city": "北京",
"location": "科技大厦",
"floor": 13,
"logoUrl": "",
"detail_address": "",
"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"
}