Zoom API MCP Server

get_meeting_participants_report

Retrieve detailed meeting participant reports by specifying a meeting ID, enabling tracking of attendance and engagement for Zoom meetings. Supports pagination for large datasets.

Input Schema

NameRequiredDescriptionDefault
meeting_idYesThe meeting ID
next_page_tokenNoNext page token
page_sizeNoNumber of records returned

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "meeting_id": { "description": "The meeting ID", "type": "string" }, "next_page_token": { "description": "Next page token", "type": "string" }, "page_size": { "description": "Number of records returned", "maximum": 300, "minimum": 1, "type": "number" } }, "required": [ "meeting_id" ], "type": "object" }
ID: h6x0sr1f0c