Cloud Recordings of past Zoom Meetings can be made ondemand https://support.zoom.us/hc/enus/articles/360000488283OndemandRecordings . Users should be registered https://marketplace.zoom.us/docs/apireference/zoomapi/cloudrecording/meetingrecordingregistrantcreate to view these recordings.Use this API to list registrants of **Ondemand Cloud Recordings** of a past meeting.**Scopes:** recording:read:admin, recording:read. ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Medium

listRecordingRegistrants(
  meetingId,
  status = NULL,
  page_size = NULL,
  page_number = NULL,
  next_page_token = NULL,
  return_response = F
)

Arguments

meetingId

The meeting ID in **long** format. The data type of this field is "long" represented as int64 in JSON .While storing it in your database, store it as a **long** data type and **not as an integer**, as the Meeting IDs can be longer than 10 digits.

status

The registrant status:pending Registrant's status is pending.approved Registrant's status is approved.denied Registrant's status is denied.

page_size

The number of records returned within a single API call.

page_number

**Deprecated** This field has been deprecated and we will stop supporting it completely in a future release. Please use "next_page_token" for pagination instead of this field.The page number of the current page in the returned records.

next_page_token

The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.

return_response

Whether to return the response instead of the response content. Defaults to FALSE.