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

# Retrieve All Users

Retrieve all users.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter    | Filter users by the given query. Filters can only apply to a subset of attribute fields within the user object:<br /><br />- displayName<br />- userName<br />- active<br /><br />The syntax of the filter query looks like the following:<br /><br />- active eq true - will return all active users<br />- displayName sw "t" - will return all users that start with the letter `t`<br /><br />For a full list of the allowed operations, visit the [SCIM parameters documentation](https://bookstack.soffid.com/books/scim/page/scim-query-syntax). |
</div>

## Example Output

```json theme={"dark"}
{
	"schemas": [
		"urn:scim:schemas:core:1.0"
	],
	"totalResults": 8,
	"Resources": [
		{
			"id": "644cdfb54c02c713008b9a06",
			"userName": "johndoe@test.com",
			"displayName": "test123",
			"active": true,
			"meta": {
				"created": "2023-04-29T09:13:25.477Z",
				"location": "https://api.bigpanda.io/resources/v1.0/scim/Users/b710e234d8f6a2c123456789"
			},
			"roles": [],
			"phoneNumbers": []
		},
		{
			"id": "644a80d7abf4ec9e056280d9",
			"userName": "foo@test.com",
			"displayName": "foo",
			"active": true,
			"meta": {
				"created": "2023-04-27T14:04:07.922Z",
				"location": "https://api.bigpanda.io/resources/v1.0/scim/Users/b710e234d8f6a2c123456789"
			},
			"roles": [
				"admin"
			],
			"phoneNumbers": []
		}
	]
}
```

## Workflow Library Example

[Retrieve All Users with Bigpanda and Send Results Via Email](https://library.blinkops.com/workflows/retrieve-all-users-with-bigpanda-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/retrieve-all-users-with-bigpanda-and-send-results-via-email/canvas" />
</div>
