action zoom_dashboard_webinars { label: "List webinars" description: "List all the live or past webinars from a specified period of time.

\n**Scopes:** `dashboard_webinars:read:admin`
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Resource-intensive`
\n**Prerequisites:**
\n* Business, Education or API Plan with Webinar add-on.\n\n\n" provider: zoom method: GET path: "/metrics/webinars" encoding: json input: { type: "object" properties: { from: { type: "string" format: "date" } next_page_token: { type: "string" } page_size: { type: "integer" } to: { type: "string" format: "date" } type: { type: "string" enum: ["past", "live"] } } required: ["from", "to"] additionalProperties: false } output: { type: "object" } }