Retrieve report https://support.zoom.us/hc/enus/articles/216378603MeetingReporting on a past meeting for a specified period of time. The time range for the report is limited to a month and the month should fall under the past six months.Meetings will only be returned in the response if the meeting has two or more unique participants. **Scopes:** report:read:admin ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Heavy**Prerequisites:*** Pro or higher plan.

getMeetingReports(
  userId,
  from,
  to,
  page_size = NULL,
  next_page_token = NULL,
  type = NULL,
  return_response = F
)

Arguments

userId

The user ID or email address of the user. For userlevel apps, pass me as the value for userId.

from

Start date in 'yyyymmdd' format. The date range defined by the "from" and "to" parameters should only be one month as the report includes only one month worth of data at once.

to

End date.

page_size

The number of records returned within a single API call.

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.

type

The meeting types: past Past meetings.pastOne Past one user meetings.

return_response

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