update_room
Modify room settings in Webex, including title, visibility, permissions, and description, using its unique identifier to streamline collaboration updates.
Instructions
Update a room in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
classificationId | No | The classification ID of the room. | |
description | No | The description of the room. | |
isAnnouncementOnly | No | Indicates if the room is announcement only. | |
isLocked | No | Indicates if the room is locked. | |
isPublic | No | Indicates if the room is public. | |
isReadOnly | No | Indicates if the room is read-only. | |
roomId | Yes | The unique identifier for the room. | |
teamId | No | The team ID associated with the room. | |
title | No | The title of the room. |
Input Schema (JSON Schema)
{
"properties": {
"classificationId": {
"description": "The classification ID of the room.",
"type": "string"
},
"description": {
"description": "The description of the room.",
"type": "string"
},
"isAnnouncementOnly": {
"description": "Indicates if the room is announcement only.",
"type": "boolean"
},
"isLocked": {
"description": "Indicates if the room is locked.",
"type": "boolean"
},
"isPublic": {
"description": "Indicates if the room is public.",
"type": "boolean"
},
"isReadOnly": {
"description": "Indicates if the room is read-only.",
"type": "boolean"
},
"roomId": {
"description": "The unique identifier for the room.",
"type": "string"
},
"teamId": {
"description": "The team ID associated with the room.",
"type": "string"
},
"title": {
"description": "The title of the room.",
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}