action zoom_dashboard_meeting_participants { label: "List meeting participants" description: "Get a list of participants from live or past meetings.

\nIf 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\n**Scopes:** `dashboard_meetings:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`
\n**Prerequisites:** Business or a higher plan." provider: zoom method: GET path: "/metrics/meetings/{meetingId}/participants" encoding: json input: { type: "object" properties: { include_fields: { type: "string" enum: ["registrant_id"] } 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" } }