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

This request retrieves a list of all clients within a tenant.

<Note>
  External Documentation

  To learn more, visit the [PlexTrac documentation](https://api-docs.plextrac.com/#57aca52b-34ad-4ef5-8318-b43436c4be26).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                       |
  | ------------ | ------------------------------------------------- |
  | Filter By    | Choose to filter results by the following fields. |
  | Filter Value | The Value to filter the results by.               |
  | Limit        | The maximal number of returned results.           |
  | Offset       | Number of the results to initially skip.          |
</div>

## Example Output

```json theme={"dark"}
{
	"status": "success",
	"data": [
		{
			"client_id": 1963,
			"name": "Evidence Test",
			"tags": [
				"test"
			]
		},
		{
			"client_id": 4155,
			"name": "Test Client",
			"poc": "poc name",
			"tags": [
				"test"
			]
		}
	],
	"meta": {
		"pagination": {
			"offset": 0,
			"limit": 25,
			"total": 2
		},
		"sort": [
			{
				"by": "name",
				"order": "ASC"
			}
		],
		"filters": [
			{
				"by": "name",
				"value": "test"
			},
			{
				"by": "tags",
				"value": [
					"test"
				]
			},
			{
				"by": "clients",
				"value": [
					1963,
					4155,
					4699
				]
			}
		]
	}
}
```

## Workflow Library Example

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