> ## 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.

# List Users

Returns a list of people in your organization including active and inactive people.

By default only the first 100 people are returned.

The list can be filtered on first or last name and paged using the optional paging parameters.

## Basic Parameters

<div className="integrations-table">
  | Parameter     | Description                                 |
  | ------------- | ------------------------------------------- |
  | Show Inactive | Set to `false` to only return active users. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                              |
  | --------- | -------------------------------------------------------- |
  | Direction | Direction to sort the records.                           |
  | Limit     | Total records to return, in the range 1-1000.            |
  | Search    | A value by which to filter records. Up to 50 characters. |
  | Start     | Start record index.                                      |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"Id": "<string>",
		"UserName": "<string>",
		"FirstName": "<string>",
		"LastName": "<string>",
		"Active": true,
		"Email": "<string>",
		"AccessLevel": "<string>",
		"Brand": "<string>"
	}
]
```

## Workflow Library Example

[List Users with Litmos and Send Results Via Email](https://library.blinkops.com/workflows/list-users-with-litmos-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/list-users-with-litmos-and-send-results-via-email/canvas" />
</div>
