Logo
Zoom Public API Documentation

Get archived file statistics

GET {{baseUrl}}/archive_files/statistics?from=<dateTime>&to=<dateTime>

Get statistics about an account's archived meeting or webinar files.

Zoom's archiving solution lets account administrators set up an automated mechanism to record, collect, and archive meeting data to a third-party platform of their choice to satisfy FINRA and other compliance requirements.

Prerequisites: * The Meeting and Webinar Archiving feature enabled for your account by Zoom Support.

Scopes: recording:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
from
string The query start date, `yyyy-MM-dd'T'HH:mm:ssZ` format. This value and the `to` query parameter value cannot exceed seven days.
to
string The query end date, in `yyyy-MM-dd'T'HH:mm:ssZ` format. This value and the `from` query parameter value cannot exceed seven days.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "from": "<dateTime>", "to": "<dateTime>", "total_records": "<integer>", "statistic_by_file_extension": { "mp4_file_count": "<integer>", "m4a_file_count": "<integer>", "txt_file_count": "<integer>", "json_file_count": "<integer>", "vtt_file_count": "<integer>" }, "statistic_by_file_status": { "processing_file_count": "<integer>", "completed_file_count": "<integer>", "failed_file_count": "<integer>" } }



Curl
curl -X GET 'https://api.zoom.us/v2/archive_files/statistics?from=<dateTime>&to=<dateTime>?from=<dateTime>&to=<dateTime>' -H 'Accept: application/json'

ENDPOINTS