Logo
Zoom Public API Documentation

Get daily usage report

GET {{baseUrl}}/report/daily?year=<integer>&month=<integer>&group_id=<string>

Retrieve daily report to access the account-wide usage of Zoom services for each day in a given month. It lists the number of new users, meetings, participants, and meeting minutes.

Prerequisites

  • Pro or higher plan.

Scopes: report:read:admin

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
year
string Year for this report
month
string Month for this report
group_id
string The group ID. To get a group ID, use the [**List groups**](/api-reference/zoom-api/methods#operation/groups) API. **Note:** The API response will only contain users who are members of the queried group ID.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "dates": [ { "date": "<date>", "meeting_minutes": "<integer>", "meetings": "<integer>", "new_users": "<integer>", "participants": "<integer>" }, { "date": "<date>", "meeting_minutes": "<integer>", "meetings": "<integer>", "new_users": "<integer>", "participants": "<integer>" } ], "month": "<integer>", "year": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/report/daily?year=<integer>&month=<integer>&group_id=<string>?year=<integer>&month=<integer>&group_id=<string>' -H 'Accept: application/json'

ENDPOINTS