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
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
from | string | (Required) Start date in 'yyyy-mm-dd' format. The date range defined by the "from" and "to" 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":"\u003cstring\u003e","page_size":30,"operation_logs":[{"action":"\u003cstring\u003e","category_type":"\u003cstring\u003e","operation_detail":"\u003cstring\u003e","operator":"\u003cstring\u003e","time":"\u003cdateTime\u003e"},{"action":"\u003cstring\u003e","category_type":"\u003cstring\u003e","operation_detail":"\u003cstring\u003e","operator":"\u003cstring\u003e","time":"\u003cdateTime\u003e"}]}