Logo
Zoom Public API Documentation

Get cloud recording usage report

GET {{baseUrl}}/videosdk/report/cloud_recording?from=2021-10-11&to=2021-10-11

Retrieve cloud recording usage report for a specified period. You can only get cloud recording reports for up to 6 months prior to the current date. The date gap between from and to dates should be smaller or equal to 30 days.

Prerequisites
* A Video SDK account.

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
from
string (Required) The start date to query, in `yyyy-mm-dd` format. The ranges defined in the `from` and `to` parameters should **only** be a one month range. This is because the report only includes one month's worth of data.
to
string (Required) The end date to query, in `yyyy-mm-dd` format. The ranges defined in the `from` and `to` parameters should **only** be a one month range. This is because the report only includes one month's worth of data.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "from": "2021-12-01", "to": "2021-12-02", "cloud_recording_storage": [ { "date": "2020-02-10T21:39:50Z", "usage": "29 MB", "plan_usage": "0", "free_usage": "1 GB" }, { "date": "2020-02-10T21:39:50Z", "usage": "29 MB", "plan_usage": "0", "free_usage": "1 GB" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/videosdk/report/cloud_recording?from=2021-10-11&to=2021-10-11?from=2021-10-11&to=2021-10-11' -H 'Accept: application/json'

ENDPOINTS