action zoom_dashboard_meeting_participants_qos {
label: "List meeting participants QoS"
description: "Get a list of meeting participants from live or past meetings along with the quality of service they recieve during the meeting such as connection quality for sending/receiving video, audio, and shared content.
If you do not provide the `type` query parameter, the default value will be set to `live` and thus, you will only see metrics for participants in a live meeting, if any meeting is currently being conducted. To view metrics on past meeting participants, provide the appropriate value for `type`.
You can specify a monthly date range for the dashboard data using the `from` and `to` query parameters. The month should fall within the last six months.
\n**Scopes:** `dashboard_meetings:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`
\n**Prerequisites:**
\n* Business or a higher plan."
provider: zoom
method: GET
path: "/metrics/meetings/{meetingId}/participants/qos"
encoding: json
input: {
type: "object"
properties: {
meetingId: {
type: "string"
}
next_page_token: {
type: "string"
}
page_size: {
type: "integer"
}
type: {
type: "string"
enum: ["past", "pastOne", "live"]
}
}
required: ["meetingId"]
additionalProperties: false
}
output: {
type: "object"
description: "Participant QOS list."
}
}