Get operation logs report

GET {{baseUrl}}/phone/reports/operationlogs?from=<date>&to=<date>&category_type=all&page_size=30&next_page_token=<string>

Retrieves the phone system operation logs report.

The phone system operation logs report allows account owners and admins to view monthly Zoom phone related admin operation details.

Account owners and admins can also access this information by logging into their Zoom accounts and navigating to Phone System Operation Logs .

Prerequisites:

  • Account must be enrollled in Pro or a higher plan
  • Account must be enrolled in a Zoom Phone plan

Scopes: phone:read:admin

Granular Scopes: phone:read:operation_logs:admin

Rate Limit Label : HEAVY

Request Params

| Key | Datatype | Required | Description | | from | string | | The start time and date in yyyy-mm-ddformat. The date range defined by the from and to parameters should be a month as the response only includes one month's worth of data at once. If unspecified, returns data within the 24 hours. | | to | string | | Required only when the from parameter is specified. The end time and date is in yyyy-mm-dd format; the same format as the from parameter. | | category_type | string | | This field filters the response by the category of the action performed. By default, the value of this field is &quot;all&quot; and thus, the response will include log of all operations for the defined period.

To only include response for a specific category type, provide a value for category_type from this table. | | page_size | number | | The number of records returned within a single API call. | | next_page_token | string | | The next page token paginates through large set of results. A next page token returns whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes. |

HEADERS

| Key | Datatype | Required | Description | | Accept | string | | |

RESPONSES

status: OK

{&quot;next_page_token&quot;:&quot;\u003cstring\u003e&quot;,&quot;page_size&quot;:30,&quot;total_records&quot;:&quot;\u003cinteger\u003e&quot;,&quot;from&quot;:&quot;\u003cstring\u003e&quot;,&quot;to&quot;:&quot;\u003cstring\u003e&quot;,&quot;operation_logs&quot;:[{&quot;action&quot;:&quot;\u003cstring\u003e&quot;,&quot;category_type&quot;:&quot;\u003cstring\u003e&quot;,&quot;operation_detail&quot;:&quot;\u003cstring\u003e&quot;,&quot;operator&quot;:&quot;\u003cstring\u003e&quot;,&quot;time&quot;:&quot;\u003cdateTime\u003e&quot;},{&quot;action&quot;:&quot;\u003cstring\u003e&quot;,&quot;category_type&quot;:&quot;\u003cstring\u003e&quot;,&quot;operation_detail&quot;:&quot;\u003cstring\u003e&quot;,&quot;operator&quot;:&quot;\u003cstring\u003e&quot;,&quot;time&quot;:&quot;\u003cdateTime\u003e&quot;}]}