create_room_tab
Add a customizable tab to a Webex room by specifying the room ID, tab URL, and display name for enhanced collaboration and resource access.
Instructions
Create a tab in a specified room.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentUrl | Yes | The URL to be displayed in the tab. | |
displayName | Yes | The name to be displayed for the tab. | |
roomId | Yes | The ID of the room where the tab will be added. |
Input Schema (JSON Schema)
{
"properties": {
"contentUrl": {
"description": "The URL to be displayed in the tab.",
"type": "string"
},
"displayName": {
"description": "The name to be displayed for the tab.",
"type": "string"
},
"roomId": {
"description": "The ID of the room where the tab will be added.",
"type": "string"
}
},
"required": [
"roomId",
"contentUrl",
"displayName"
],
"type": "object"
}