Zoom API MCP Server

update_webhook

Modify webhook configurations for Zoom API MCP Server, including updating event types, status, URL, and description to align with your integration needs.

Input Schema

NameRequiredDescriptionDefault
authorization_headerNoAuthorization header
descriptionNoWebhook description
event_typesNoEvent types to subscribe to
statusNoWebhook status
urlNoWebhook URL
webhook_idYesThe webhook ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "authorization_header": { "description": "Authorization header", "type": "string" }, "description": { "description": "Webhook description", "type": "string" }, "event_types": { "description": "Event types to subscribe to", "items": { "type": "string" }, "type": "array" }, "status": { "description": "Webhook status", "enum": [ "active", "inactive" ], "type": "string" }, "url": { "description": "Webhook URL", "format": "uri", "type": "string" }, "webhook_id": { "description": "The webhook ID", "type": "string" } }, "required": [ "webhook_id" ], "type": "object" }
ID: h6x0sr1f0c