Logo
Zoom Public API Documentation

Get past meeting participants

GET {{baseUrl}}/past_meetings/:meetingId/participants?page_size=30&next_page_token=<string>

Retrieve information on participants from a past meeting. Note the API doesn't return results if there's only one participant in a meeting.

Prerequisites:

  • Paid account on a Pro or higher plan.

Note: Please double encode your UUID when using this API if the UUID begins with a '/'or contains '//' in it.

Scopes: meeting:read:admin,meeting:read

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 
page_size
number The number of records returned within a single API call.
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_size": 30, "total_records": "<integer>", "participants": [ { "id": "<string>", "name": "<string>", "user_id": "<string>", "registrant_id": "<string>", "user_email": "<string>", "join_time": "<dateTime>", "leave_time": "<dateTime>", "duration": "<integer>", "failover": "<boolean>", "status": "in_meeting" }, { "id": "<string>", "name": "<string>", "user_id": "<string>", "registrant_id": "<string>", "user_email": "<string>", "join_time": "<dateTime>", "leave_time": "<dateTime>", "duration": "<integer>", "failover": "<boolean>", "status": "in_meeting" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/past_meetings/:meetingId/participants?page_size=30&next_page_token=<string>?page_size=30&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS