Logo
Zoom Public API Documentation

Get operation logs report

GET {{baseUrl}}/report/operationlogs?from=<date>&to=<date>&page_size=30&next_page_token=<string>&category_type=webinar

The Operations Logs report allows you to audit admin and user activity, such as adding a new user, changing account settings, and deleting recordings.

Use this API to retrieve operation logs report for a specified period of time.

Prerequisites:

  • Pro or higher plan.

Scopes: report:read:admin

Rate Limit Label: Heavy

 

Body PARAM

Key Datatype Required Description 
from
string (Required) Start date in 'yyyy-mm-dd' format. The date range defined by the &quot;from&quot; and &quot;to&quot; parameters should only be one month as the report includes only one month worth of data at once.
to
string (Required) End date.
page_size
number The number of records returned within a single API call.
next_page_token
string Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes.
category_type
string **Optional** Filter your response by a category type to see reports for a specific category. The value for this field can be one of the following: `all` `user` `user_settings` `account` `billing` `im` `recording` `phone_contacts` `webinar` `sub_account` `role` `zoom_rooms`



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "next_page_token": "<string>", "page_size": 30, "operation_logs": [ { "action": "<string>", "category_type": "<string>", "operation_detail": "<string>", "operator": "<string>", "time": "<dateTime>" }, { "action": "<string>", "category_type": "<string>", "operation_detail": "<string>", "operator": "<string>", "time": "<dateTime>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/report/operationlogs?from=<date>&to=<date>&page_size=30&next_page_token=<string>&category_type=webinar?from=<date>&to=<date>&page_size=30&next_page_token=<string>&category_type=webinar' -H 'Accept: application/json'

ENDPOINTS