delete_webinar
Remove scheduled or recurring Zoom webinars by specifying the webinar ID, optionally including occurrence ID and cancellation emails to registrants.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cancel_webinar_reminder | No | Send cancellation email to registrants | |
occurrence_id | No | The occurrence ID for a recurring webinar | |
webinar_id | Yes | The webinar ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cancel_webinar_reminder": {
"description": "Send cancellation email to registrants",
"type": "boolean"
},
"occurrence_id": {
"description": "The occurrence ID for a recurring webinar",
"type": "string"
},
"webinar_id": {
"description": "The webinar ID",
"type": "string"
}
},
"required": [
"webinar_id"
],
"type": "object"
}