create_webhook
Configure webhooks to subscribe to Zoom API events by specifying a URL, event types, and optional authorization details. Manage real-time notifications efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authorization_header | No | Authorization header | |
description | No | Webhook description | |
event_types | Yes | Event types to subscribe to | |
url | Yes | Webhook 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"
}