delete_room
Remove a Webex room by specifying its unique room ID. This tool is part of the Webex MCP Server, enabling AI assistants to manage Webex messaging resources.
Instructions
Delete a room in Webex by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roomId | Yes | The unique identifier for the room to be deleted. |
Input Schema (JSON Schema)
{
"properties": {
"roomId": {
"description": "The unique identifier for the room to be deleted.",
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}