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

Returns alerts for an organization within a specified time range.

<Note>
  External Documentation

  To learn more, visit the [Verkada documentation](https://apidocs.verkada.com/reference/getnotificationsviewv1).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter         | Description                                                                                                   |
  | ----------------- | ------------------------------------------------------------------------------------------------------------- |
  | End Time          | The end of the time range for returned alerts.<br />Default value is the current time.                        |
  | Include Image URL | The flag to include/exclude image url for notification.                                                       |
  | Notification Type | The notification type of the alert.                                                                           |
  | Start Time        | The start of the time range for returned alerts.<br />Default time range is a hour ago from the current time. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                         |
  | --------- | ----------------------------------------------------------------------------------- |
  | Limit     | The number of items returned in a single response.<br />Default is 100. Max is 200. |
  | Next Page | The pagination token used to fetch the next page of results.                        |
</div>

## Example Output

```json theme={"dark"}
{
	"next_page_token": "string",
	"notifications": [
		{
			"camera_id": "string",
			"created": 0,
			"crowd_threshold": 0,
			"image_url": "string",
			"notification_type": "string",
			"objects": [
				"string"
			],
			"person_label": "string",
			"video_url": "string"
		}
	]
}
```

## Workflow Library Example

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