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

Retrieve a list of configurations with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [Upwind documentation](https://docs.upwind.io/restapi/v1/get-compliance-resource-findings).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter        | Description                                         |
  | ---------------- | --------------------------------------------------- |
  | Framework ID     | The framework ID to filter results by.              |
  | Organization ID  | The ID of the organization.                         |
  | Page Token       | The page token to retrieve the next set of results. |
  | Per Page         | The maximum number of results to return per page.   |
  | Resource Name    | The resource name to filter results by.             |
  | Return All Pages | Automatically fetch all resources, page by page.    |
  | Severity         | The severity of the item.                           |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                  | Description                                                                                                                                                    |
  | -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Check ID                   | The check ID to filter results by.                                                                                                                             |
  | Check Title                | The check title to filter results by.                                                                                                                          |
  | Cloud Account Tags         | The cloud account tags to filter results by.<br /><br />Use `key=value` format to specify tags. Multiple tags can be specified by separating them with commas. |
  | Framework Title            | The framework title to filter results by.                                                                                                                      |
  | Include Cloud Account Tags | Select to include cloud account tags in the response.                                                                                                          |
  | Max Last Seen Time         | The date and time used to filter results that were last seen on or before this value.                                                                          |
  | Min Last Seen Time         | The date and time used to filter results that were last seen on or after this value.                                                                           |
  | Status                     | The status of the configuration to filter results by.                                                                                                          |
</div>

## Example Output

```json theme={"dark"}
{
	"resourceFindings": [
		{
			"id": "string",
			"status": "PASS",
			"severity": "LOW",
			"title": "string",
			"description": "string",
			"first_seen_time": "2024-07-29T15:51:28.071Z",
			"last_seen_time": "2024-07-29T15:51:28.071Z",
			"framework": {
				"id": "string",
				"status": "ENABLED",
				"version": "string",
				"revision": "string",
				"title": "string",
				"description": "string",
				"cloud_provider": "string"
			},
			"check": {
				"id": "string",
				"title": "string",
				"remediation": "string",
				"description": "string"
			},
			"resource": {
				"id": "string",
				"external_id": "string",
				"name": "string",
				"type": "string",
				"cloud_provider": "AWS",
				"region": "string",
				"cluster_id": "string",
				"cloud_account_id": "string",
				"cloud_account_name": "string",
				"namespace": "string",
				"internet_exposure": {
					"ingress": {
						"active_communication": true
					}
				},
				"cloud_account_tags": [
					{
						"key": "string",
						"value": "string"
					}
				],
				"risk_categories": [
					"string"
				]
			},
			"last_sync_time": "2024-07-29T15:51:28.071Z"
		}
	],
	"pagination": {
		"totalItems": 0,
		"size": 0,
		"offset": 0,
		"nextPageToken": [
			null
		],
		"hasMoreData": true
	}
}
```

## Workflow Library Example

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