listRecordingsOfAccount.Rd
List Cloud Recordings https://support.zoom.us/hc/enus/articles/203741855CloudRecording available on an Account.> To access a password protected cloud recording, add an "access_token" parameter to the download URL and provide JWT https://marketplace.zoom.us/docs/guides/gettingstarted/apptypes/createjwtapp as the value of the "access_token".**Prerequisites**:* A Pro or a higher paid plan with Cloud Recording option enabled.**Scopes**: recording:read:admin or account:read:adminIf the scope recording:read:admin is used, the Account ID of the Account must be provided in the accountId path parameter to list recordings that belong to the Account. This scope only works for Sub Accounts. To list recordings of a Master Account, the scope must be account:read:admin and the value of accountId should be me. ** Rate Limit Label https://marketplace.zoom.us/docs/apireference/ratelimits#ratelimits :** Medium
listRecordingsOfAccount( accountId, page_size = NULL, next_page_token = NULL, from = NULL, to = NULL, return_response = F )
accountId | Unique identifier of the account. |
---|---|
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. |
from | The start date in UTC for the monthly range for which you would like to retrieve recordings. The maximum range can be a month. If no value is provided for this field, the default will be current date. For example, if you make the API request on June 30, 2020, without providing the “from” and “to” parameters, by default the value of 'from' field will be “20200630” and the value of the 'to' field will be “20200701”. |
to | The end date for the monthly range for which you would like to retrieve recordings. The maximum range can be a month. |
return_response | Whether to return the response instead of the response content. Defaults to FALSE. |