get_webinar_details_report
Fetch detailed webinar information from Zoom using the webinar ID. The tool helps retrieve comprehensive data for analysis, reporting, or management purposes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
webinar_id | Yes | The webinar ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"webinar_id": {
"description": "The webinar ID",
"type": "string"
}
},
"required": [
"webinar_id"
],
"type": "object"
}