Logo
Zoom Public API Documentation

List recording registrants

GET {{baseUrl}}/meetings/:meetingId/recordings/registrants?status=approved&page_size=30&page_number=1&next_page_token=<string>

Use this API to list registrants of a past meeting's on-demand cloud recordings. Users must register to view the recordings.

Scopes: recording:read:admin,recording:read

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
status
string Query by the registrant's status: * `pending` &mdash; The registration is pending. * `approved` &mdash; The registrant is approved. * `denied` &mdash; The registration is denied.
page_size
number The number of records returned within a single API call.
page_number
number **Deprecated.** We will no longer support this field in a future release. Instead, use the `next_page_token` for pagination.
next_page_token
string Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "page_count": "<integer>", "page_number": 1, "page_size": 30, "total_records": "<integer>", "registrants": [ { "email": "<email>", "first_name": "<string>", "id": "<string>", "address": "<string>", "city": "<string>", "comments": "<string>", "country": "<string>", "custom_questions": [ { "title": "<string>", "value": "<string>" }, { "title": "<string>", "value": "<string>" } ], "industry": "<string>", "job_title": "<string>", "last_name": "<string>", "no_of_employees": "51-100", "org": "<string>", "phone": "<string>", "purchasing_time_frame": "", "role_in_purchase_process": "Decision Maker", "state": "<string>", "status": "pending", "zip": "<string>" }, { "email": "<email>", "first_name": "<string>", "id": "<string>", "address": "<string>", "city": "<string>", "comments": "<string>", "country": "<string>", "custom_questions": [ { "title": "<string>", "value": "<string>" }, { "title": "<string>", "value": "<string>" } ], "industry": "<string>", "job_title": "<string>", "last_name": "<string>", "no_of_employees": "251-500", "org": "<string>", "phone": "<string>", "purchasing_time_frame": "No timeframe", "role_in_purchase_process": "Not involved", "state": "<string>", "status": "denied", "zip": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/meetings/:meetingId/recordings/registrants?status=approved&page_size=30&page_number=1&next_page_token=<string>?status=approved&page_size=30&page_number=1&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS