action zoom_dashboard_webinar_participants_qos { label: "List webinar participant QoS" description: "Retrieve a list of participants from live or past webinars and the quality of service they received.
This data indicates the connection quality for sending/receiving video, audio, and shared content. If nothing is being sent or received at that time, no information will be shown in the fields.
\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/qos" encoding: json input: { type: "object" properties: { 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" description: "Participant QOS list." } }