> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Users

Search users

Returns all\* user records that match the given search criteria.

If multiple search params are given and \`filter\_or\` is FALSE or not specified,
search params are combined in a logical AND operation.
Only rows that match \*all\* search param criteria will be returned.

If \`filter\_or\` is TRUE, multiple search params are combined in a logical OR operation.
Results will include rows that match \*\*any\*\* of the search criteria.

String search params use case-insensitive matching.
String search params can contain \`%\` and '\_' as SQL LIKE pattern match wildcard expressions.
example="dan%" will match "danger" and "Danzig" but not "David"
example="D\_m%" will match "Damage" and "dump"

Integer search params can accept a single value or a comma separated list of values. The multiple
values will be combined under a logical OR operation - results will match at least one of
the given values.

Most search params can accept "IS NULL" and "NOT NULL" as special expressions to match
or exclude (respectively) rows where the column is null.

Boolean search params accept only "true" and "false" as values.

(\*) Results are always filtered to the level of information the caller is permitted to view.
Looker admins can see all user details; normal users in an open system can see
names of other users but no details; normal users in a closed system can only see
names of other users who are members of the same group as the user.

<Note>
  External Documentation

  To learn more, visit the [Google Looker documentation](https://docs.cloud.google.com/looker/docs/reference/looker-api/latest/methods/User/search_users).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter           | Description                                                      |
  | ------------------- | ---------------------------------------------------------------- |
  | Content Metadata ID | Search for users who have access to this content\_metadata item. |
  | Email               | Search for the user with this email address.                     |
  | Filter Or           | Combine given search criteria in a boolean OR expression.        |
  | First Name          | Match First name.                                                |
  | Group ID            | Search for users who are direct members of this group.           |
  | ID                  | Match User Id.                                                   |
  | Last Name           | Match Last name.                                                 |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                | Description                                                                                                   |
  | ------------------------ | ------------------------------------------------------------------------------------------------------------- |
  | Embed User               | Search for only embed users.                                                                                  |
  | Fields                   | Include only these fields in the response.                                                                    |
  | Is Disabled              | Search for disabled user accounts.                                                                            |
  | Limit                    | Number of results to return. (used with offset and takes priority over page and per\_page).                   |
  | Offset                   | Number of results to skip before returning any. (used with limit and takes priority over page and per\_page). |
  | Sorts                    | Fields to sort by.                                                                                            |
  | Verified Looker Employee | Search for user accounts associated with Looker employees.                                                    |
</div>

## Example Output

```json theme={"dark"}
[]
```

## Workflow Library Example

[Search Users with Google Looker and Send Results Via Email](https://library.blinkops.com/workflows/search-users-with-google-looker-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/search-users-with-google-looker-and-send-results-via-email/canvas" />
</div>
