查询所有会议室

查询所有会议室

1. 接口描述

接口名称:

/confopenapi/room/listAll

发送方式:

POST

参数格式:

accept: application/json;content-type: application/json

2. 输入参数

Http Header

参数名 必选 类型 说明
token 接口调用鉴权参数 也可以放在http body中

HttpBody

参数名 必选 类型 说明
 

传参示例

{

}

4. 返回参数

参数名 类型 说明
status int 0:成功,非0失败
result JSONArray 结果

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": 15501,
            "name": "会议室-01-008",
            "capacity": 100,
            "city": "",
            "location": "全时-测试/第一层-001/第二层-0101/第三层-010101/第四层-01010101",
            "floor": 0,
            "logoUrl": "",
            "detailAddress": "全时-测试/第一层-01/第二层-0101/第三层-010101/第四层-01010101",
            "status": 1,
            "deviceIds": null,
            "approvalType": 0,
            "members": null,
            "devices": null,
            "roomType": 1,
            "thirdRoomId": "44740"
        },
        {
            "roomId": 15498,
            "name": "会议室-01",
            "capacity": 0,
            "city": "",
            "location": "",
            "floor": 0,
            "logoUrl": "",
            "detailAddress": "",
            "status": 1,
            "deviceIds": null,
            "approvalType": 0,
            "members": null,
            "devices": null,
            "roomType": 1,
            "thirdRoomId": "f3f3b1d5ce059c525fc4691cf0683a94"
        }
    ],
    "request_id": "roomadminserver-2887017456-1732780770.844531821.781",
    "reqid": "confopenapiserver-3232248341-1732780770.346789400.694",
    "timestamp": 1732780770346,
    "request_duration": "1.0765697s"
}

备注

  • 更多返回错误代码请看首页的错误代码描述