Retrieve a list of sign in / sign out activity logs report https://support.zoom.us/hc/enus/articles/201363213GettingStartedwithReports of users under a Zoom account.**Prerequisites*** Pro or higher plan.**Scopes:** report:read:admin ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Heavy

getSignInSignOutActivityReport(
  from = NULL,
  to = NULL,
  page_size = NULL,
  next_page_token = NULL,
  return_response = F
)

Arguments

from

Start date for which you would like to view the activity logs report. Using the from and to parameters, specify a monthly date range for the report as the API only provides one month worth of data in one request. The specified date range should fall within the last six months.

to

End date up to which you would like to view the activity logs report.

page_size

The number of records to be returned within a single API call

next_page_token

Next page token is used to paginate through large result sets

return_response

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