update_webhook
Modify existing webhooks in the Zoom API MCP Server by updating URL, event types, authorization header, description, or status for streamlined event management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authorization_header | No | Authorization header | |
description | No | Webhook description | |
event_types | No | Event types to subscribe to | |
status | No | Webhook status | |
url | No | Webhook URL | |
webhook_id | Yes | The 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"
}