create_room
Create customizable rooms in Webex with specific titles, team IDs, and classification IDs. Manage room settings like privacy, locking, and announcement mode for tailored collaboration spaces.
Instructions
Create a room in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
classificationId | Yes | The classification ID for the room. | |
description | No | The description of the room. | |
isAnnouncementOnly | No | Whether the room is announcement only. | |
isLocked | No | Whether the room is locked. | |
isPublic | No | Whether the room is public. | |
teamId | Yes | The ID of the team to which the room belongs. | |
title | Yes | The title of the room. |
Input Schema (JSON Schema)
{
"properties": {
"classificationId": {
"description": "The classification ID for the room.",
"type": "string"
},
"description": {
"description": "The description of the room.",
"type": "string"
},
"isAnnouncementOnly": {
"description": "Whether the room is announcement only.",
"type": "boolean"
},
"isLocked": {
"description": "Whether the room is locked.",
"type": "boolean"
},
"isPublic": {
"description": "Whether the room is public.",
"type": "boolean"
},
"teamId": {
"description": "The ID of the team to which the room belongs.",
"type": "string"
},
"title": {
"description": "The title of the room.",
"type": "string"
}
},
"required": [
"title",
"teamId",
"classificationId"
],
"type": "object"
}