Method: customers.telemetry.users.list

  • The goal of this page is to list all telemetry users.

  • The HTTP request uses a GET method with a specific URL structure including a required parent parameter.

  • Optional query parameters like filter, readMask, pageSize, and pageToken can be used to refine the results.

  • The request body should be empty, and the response body contains a list of telemetry users and an optional nextPageToken.

  • Listing telemetry users requires the https://www.googleapis.com/auth/chrome.management.telemetry.readonly authorization scope.

List all telemetry users.

HTTP request

GET https://chromemanagement.googleapis.com/v1/{parent=customers/*}/telemetry/users

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. Customer id or "my_customer" to use the customer associated to the account making the request.

Query parameters

Parameters
filter

string

Only include resources that match the filter.

Supported filter fields:

  • userId
  • userOrgUnitId

readMask

string (FieldMask format)

Read mask to specify which fields to return.

Supported readMask paths are:

  • name
  • orgUnitId
  • userId
  • userEmail
  • userDevice.device_id
  • userDevice.audio_status_report
  • userDevice.device_activity_report
  • userDevice.network_bandwidth_report
  • userDevice.peripherals_report
  • userDevice.app_report

This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".

pageSize

integer

Maximum number of results to return. Default value is 100. Maximum value is 1000.

pageToken

string

Token to specify next page in the list.

Request body

The request body must be empty.

Response body

Response message for listing telemetry users for a customer.

If successful, the response body contains data with the following structure:

JSON representation
{
  "telemetryUsers": [
    {
      object (TelemetryUser)
    }
  ],
  "nextPageToken": string
}
Fields
telemetryUsers[]

object (TelemetryUser)

Telemetry users returned in the response.

nextPageToken

string

Token to specify next page in the list.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/chrome.management.telemetry.readonly