编辑会议室
编辑会议室
1. 接口描述
接口名称:
/confopenapi/room/update
发送方式:
POST
参数格式:
accept: application/json;content-type: application/json
2. 输入参数
Http Header
参数名 | 必选 | 类型 | 说明 |
---|---|---|---|
token | 是 | 接口调用鉴权参数 | 也可以放在http body中 |
HttpBody
参数名 | 类型 | 说明 |
---|---|---|
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数组 |
3. 示例
传参示例
{
"roomId": 11816,
"roomName":"会议室test7",
"capacity":100,
"city":"北京",
"location":"科技大厦",
"floor":15,
"logoUrl":"",
"detailAddress":"",
"approvalType":1,
"status":1,
"members": {
"orgIds": [
123
]
}
}
4. 返回参数
参数名 | 类型 | 说明 |
---|---|---|
status | int | 0:成功,非0失败 |
result | json字符串 | 结果 |
result 参数说明
参数名 | 类型 | 说明 | |
---|---|---|---|
roomId | int | 会议id | |
roomId | 是 | int | 会议室id |
status | 否 | int | 会议室状态 1:启用(默认) ,2:禁用 |
roomName | 是 | 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": 15519,
"name": "2024-11-28 16:55:10会议室-2",
"capacity": 10,
"city": "北京",
"location": "科技大厦",
"floor": 13,
"logoUrl": "",
"detailAddress": "",
"status": 1,
"deviceIds": null,
"approvalType": 0,
"members": null,
"devices": null,
"roomType": 1,
"thirdRoomId": "2341"
},
"request_id": "roomadminserver-2887017456-1732780515.484290792.543",
"reqid": "confopenapiserver-3232248341-1732780511.69421800.59",
"timestamp": 1732780511069,
"request_duration": "4.8322848s"
}
备注
- 更多返回错误代码请看首页的错误代码描述