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

Get a list of users in a specified organization with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [Flexera documentation](https://developer.flexera.com/docs/api/iam/v1#/User/User%23index).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                               |
  | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter    | A filtering criteria to apply using standard REST query syntax. Supported fields include - `email`, `firstName`, `lastName`, `lastUILogin`, `lastAPILogin`.<br /><br />For additional information about the filter parameter, refer to the [Flexera API documentation](https://developer.flexera.com/docs/api/iam/v1#/User/User%23index). |
  | Order By  | The field and sort direction for ordering the results in the format of `field asc\|desc`.<br /><br />For example: `firstName asc` or `lastName desc`.                                                                                                                                                                                     |
  | Org ID    | The ID of the organization (tenant).                                                                                                                                                                                                                                                                                                      |
</div>

## Example Output

```json theme={"dark"}
{
	"kind": "iam#org-user-list",
	"nextPage": "/iam/v1/orgs/123/users?skipToken=19u2349",
	"values": [
		{
			"createdAt": "2022-03-24T21:12:13.020627Z",
			"email": "jsmith@flexera.com",
			"firstName": "Juan",
			"id": 1234,
			"kind": "iam#user",
			"lastAPILogin": "2023-02-22T21:11:10.020627Z",
			"lastName": "Smith Collins",
			"lastUILogin": "2023-02-22T21:11:10.020627Z",
			"ref": "iam#user:1234",
			"updatedAt": "2023-02-22T21:11:10.020627Z"
		},
		{
			"createdAt": "2022-03-24T21:12:13.020627Z",
			"email": "djohnson@flexera.com",
			"firstName": "David",
			"id": 567,
			"kind": "iam#user",
			"lastAPILogin": "2023-02-22T21:11:10.020627Z",
			"lastName": "Johnson Brown",
			"lastUILogin": "2023-02-22T21:11:10.020627Z",
			"ref": "iam#user:567",
			"updatedAt": "2023-02-22T21:11:10.020627Z"
		}
	]
}
```

## Workflow Library Example

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