list_webinar_participants
Retrieve and manage participant details for Zoom webinars using a structured API endpoint. Specify webinar ID and page size to access attendee records efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
next_page_token | No | Next page token | |
page_size | No | Number of records returned | |
webinar_id | Yes | The webinar ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"next_page_token": {
"description": "Next page token",
"type": "string"
},
"page_size": {
"description": "Number of records returned",
"maximum": 300,
"minimum": 1,
"type": "number"
},
"webinar_id": {
"description": "The webinar ID",
"type": "string"
}
},
"required": [
"webinar_id"
],
"type": "object"
}