Zoom API MCP Server

create_webhook

Set up webhooks in the Zoom API MCP Server to receive real-time notifications for specified events. Define the target URL, event types, and authorization header to enable automated updates and integrations.

Input Schema

NameRequiredDescriptionDefault
authorization_headerNoAuthorization header
descriptionNoWebhook description
event_typesYesEvent types to subscribe to
urlYesWebhook URL

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" }, "url": { "description": "Webhook URL", "format": "uri", "type": "string" } }, "required": [ "url", "event_types" ], "type": "object" }
ID: h6x0sr1f0c