Logo
Zoom Public API Documentation

Get call recordings

GET {{baseUrl}}/phone/recordings?page_size=<integer>&next_page_token=<string>&from=<date>&to=<date>&owner_type=all&recording_type=<string>&site_id=All sites&query_date_type=start_time&group_id=All groups

Returns an account's call recordings.

Prerequisites: * A Pro or higher account plan * A Zoom Phone license * Account owner or admin privileges

Scopes: phone:read:admin,phone_recording:read:admin

Granular Scopes: phone:read:list_call_recordings:admin

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 
page_size
string The number of records returned within a single API call. The default is **30** and the maximum is **300**.
next_page_token
string The current page number of the returned records.
from
string The start time and date in **yyyy-mm-dd** or **yyyy-MM-dd T HH:mm:ssZ** format. The date range defined in the `from` and `to` parameters should be a month as the response only includes one month's worth of data at once. If unspecified, it returns data from the past 30 days.
to
string This field is **required** only when the `from` parameter is specified. The end time and date display in **yyyy-mm-dd** or **yyyy-MM-dd T HH:mm:ssZ** format, which is the same format as the `from` parameter.
owner_type
string The owner type. The allowed values are `null`, `user`, or `callQueue`. The default value is `null`. If the value is `null`, it returns all owner types.
recording_type
string The recording type. The allowed values are `null`, `OnDemand`, or `Automatic`. The default value is `null`. If `null`, it returns all recording types.
site_id
string
Curl
curl -X GET 'https://api.zoom.us/v2/phone/recordings?page_size=<integer>&next_page_token=<string>&from=<date>&to=<date>&owner_type=all&recording_type=<string>&site_id=All sites&query_date_type=start_time&group_id=All groups?page_size=<integer>&next_page_token=<string>&from=<date>&to=<date>&owner_type=all&recording_type=<string>&site_id=All sites&query_date_type=start_time&group_id=All groups' -H 'Accept: application/json'

ENDPOINTS