get_webhook
Retrieve specific webhook details by providing its unique ID, enabling integration and management of webhooks within the Zoom API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
webhook_id | Yes | The webhook ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"webhook_id": {
"description": "The webhook ID",
"type": "string"
}
},
"required": [
"webhook_id"
],
"type": "object"
}