action zoom_dashboard_webinar_participants { label: "Get webinar participants" description: "Retrieve details on participants from live or past webinars.

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