Retrieve a list of all device users, either for a single device or for all devices. Returned as DeviceUsers objects. Note: This action only supports service account connections.
External DocumentationTo learn more, visit the Google Cloud Identity documentation.

Basic Parameters

ParameterDescription
CustomerThe resource name of the customer, formatted as: customers/{customer}.

Note: Use customers/my_customer if you’re managing your own organization’s devices. Otherwise, use customers/{customer}, where {customer} is the customer who owns the device.
FilterOptional filters applied when retrieving a list of device users, formatted as: field:value. Separate multiple search fields by the space character. For example:

apps:com.android.mms brand:google default_language:English

For a list of search fields, please refer to Google’s Documentation.
Parent DeviceThe device of which to search for users.

To list all DeviceUsers, set this to devices/-.

To list all DeviceUsers owned by a device, set this to the resource name of the device, formatted as: devices/{device}.
Return All PagesAutomatically fetch all resources, page by page.

Advanced Parameters

ParameterDescription
Delegated User OverridePerform the action on behalf of another user, overriding the delegated user defined in the connection.

If not specified, the delegated user is the one provided in the connection.

Has no effect when using an OAuth connection.

NOTE: the connection details are not edited by this input.
Page SizeThe maximum number of objects to retrieve in a single execution.
Page TokenA page token, received from a previous List Device Users execution. Provide this to retrieve the subsequent page. When paginating, all other parameters provided must match the execution that provided the page token.

Example Output

{
  "deviceUsers": [
    {
      "name": string,
      "userEmail": string,
      "managementState": enum (ManagementState),
      "firstSyncTime": string,
      "lastSyncTime": string,
      "userAgent": string,
      "languageCode": string,
      "compromisedState": enum (CompromisedState),
      "passwordState": enum (PasswordState),
      "createTime": string
    }
  ],
  "nextPageToken": string
}

Workflow Library Example

List Device Users with Google Cloud Identity and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop