delete_channel
Remove a specified channel from Zoom using its channel ID. The tool ensures proper validation and authentication for secure deletion within the Zoom API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The channel ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "The channel ID",
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
}