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

Get a list of alerts during the specified date range.

<Note>
  External Documentation

  To learn more, visit the [Lacework documentation](https://api.lacework.net/api/v2/docs#tag/Alerts/paths/~1api~1v2~1Alerts/get).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description                                    |
  | ---------- | ---------------------------------------------- |
  | End Time   | Query for changed files until given timestamp. |
  | Start Time | Query for changed files since given timestamp. |
</div>

## Example Output

```json theme={"dark"}
{
	"paging": {
		"rows": 1000,
		"totalRows": 3120,
		"urls": {
			"nextPage": "https://YourLacework.lacework.net/api/v2/Alerts/AbcdEfgh123..."
		}
	},
	"data": [
		{
			"alertId": 855628,
			"startTime": "2022-06-30T00:00:00.000Z",
			"alertType": "MaliciousFile",
			"severity": "Critical",
			"internetExposure": "UnknownInternetExposure",
			"reachability": "UnknownReachability",
			"derivedFields": {
				"category": "Anomaly",
				"sub_category": "File",
				"source": "Agent"
			},
			"endTime": "2022-06-30T01:00:00.000Z",
			"lastUserUpdatedTime": "",
			"status": "Open",
			"alertName": "Clone of Cloud Activity log ingestion failure detected",
			"alertInfo": {
				"subject": "Clone of Cloud Activity log ingestion failure detected: `azure-al-india-dnd` (and `3` more) is failing for data ingestion into Lacework",
				"description": "New integration failure detected for azure-al-india-dnd (and 3 more)"
			},
			"policyId": "CUSTOM_PLATFORM_130"
		},
		{
			"alertId": 855629,
			"startTime": "2022-06-30T00:00:00.000Z",
			"alertType": "ChangedFile",
			"severity": "Critical",
			"internetExposure": "UnknownInternetExposure",
			"reachability": "UnknownReachability",
			"derivedFields": {
				"category": "Policy",
				"sub_category": "File",
				"source": "Agent"
			},
			"endTime": "2022-06-30T01:00:00.000Z",
			"lastUserUpdatedTime": "2022-06-30T01:26:51.392Z",
			"status": "Open",
			"alertName": "Unauthorized API Call",
			"alertInfo": {
				"subject": "Unauthorized API Call: For account: `1234567890`: Unauthorized API call was attempted `4` times",
				"description": "For account: 1234567890: Unauthorized API call was attempted 4 times by user  ABCD1234:Lacework"
			}
		}
	]
}
```

## Workflow Library Example

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