update_room_tab
Modify a room tab in Webex by updating its content URL and display name, ensuring accurate and relevant information is displayed for users.
Instructions
Update a Room Tab in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentUrl | Yes | The new content URL for the tab. | |
displayName | Yes | The display name for the tab. | |
id | Yes | The unique identifier for the Room Tab. | |
roomId | Yes | The ID of the room to which the tab belongs. |
Input Schema (JSON Schema)
{
"properties": {
"contentUrl": {
"description": "The new content URL for the tab.",
"type": "string"
},
"displayName": {
"description": "The display name for the tab.",
"type": "string"
},
"id": {
"description": "The unique identifier for the Room Tab.",
"type": "string"
},
"roomId": {
"description": "The ID of the room to which the tab belongs.",
"type": "string"
}
},
"required": [
"id",
"roomId",
"contentUrl",
"displayName"
],
"type": "object"
}