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

Retrieve a list of findings for a specific report.

<Note>
  External Documentation

  To learn more, visit the [PlexTrac documentation](https://api-docs.plextrac.com/#88b61efa-7f17-42ba-b383-81dad70ff7b7).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                                                |
  | ------------ | ---------------------------------------------------------------------------------------------------------- |
  | Client ID    | The ID of the client whose report to get findings for is. Can be retrieved from the 'List Clients' action. |
  | 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.                                                                   |
  | Report ID    | The ID of the report to get findings for. Can be retrieved from the 'List Reports' action.                 |
</div>

## Example Output

```json theme={"dark"}
{
	"status": "success",
	"data": [
		{
			"affected_assets": {},
			"assignedTo": null,
			"client_id": 4155,
			"createdAt": 1653496110726,
			"description": "<p>desc</p>",
			"fields": {
				"field1": {
					"label": "Label",
					"value": "<p>value</p>"
				}
			},
			"flaw_id": 3929198681,
			"jiraIssueKey": null,
			"jiraIssueLink": null,
			"last_update": 1653496244421,
			"report_id": 500006,
			"serviceNowTicketKey": null,
			"serviceNowTicketTable": null,
			"severity": "Critical",
			"status": "Open",
			"tags": [
				"test_tag"
			],
			"title": "Finding Changed",
			"visibility": "draft",
			"timeToNearestSLA": ""
		}
	],
	"meta": {
		"pagination": {
			"limit": 1,
			"offset": 0,
			"total": 1
		},
		"filters": [
			{
				"by": "findingTags",
				"value": [
					"test_tag"
				]
			}
		],
		"sort": [
			{
				"by": "title",
				"order": "ASC"
			},
			{
				"by": "status",
				"order": "DESC"
			},
			{
				"by": "severity",
				"order": "ASC"
			},
			{
				"by": "META().id",
				"order": "ASC"
			}
		]
	}
}
```

## Workflow Library Example

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