get_meeting_participants_report
Retrieve detailed participant reports for Zoom meetings by providing the meeting ID. Supports pagination with page size and next page token options for managing large datasets.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
meeting_id | Yes | The meeting ID | |
next_page_token | No | Next page token | |
page_size | No | Number 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"
}