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

Get a list of triggered alerts in your domain.

<Note>
  External Documentation

  To learn more, visit the [Devo documentation](https://docs.devo.com/space/latest/127926341/Working+with+triggered+alerts+using+the+API#GET-%C2%A0-/v1/alerts/statistics).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                               |
  | --------- | ------------------------------------------------------------------------------------------------------------------------- |
  | From      | Filters all alerts triggered after this date.                                                                             |
  | Limit     | Maximum number of elements returned in the response.                                                                      |
  | Offset    | Position of the first element in the returned list. You will retrieve a subset of records starting with the offset value. |
  | To        | Filters all alerts triggered before this date.                                                                            |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                            |
  | --------- | ------------------------------------------------------------------------------------------------------ |
  | ASC Order | Select to retrieve the alert list in ascending order.                                                  |
  | Order By  | Order the alerts by a specific field.                                                                  |
  | Show All  | Select to retrieve all the triggered alerts, including the ones with false positive and closed status. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 123456,
	"domain": "myDomain",
	"priority": 4,
	"context": "my.alert.demo.AWSConsoleLoginFailure",
	"category": "my.context",
	"srcPort": null,
	"srcIp": null,
	"srcHost": null,
	"dstIp": null,
	"dstPort": null,
	"dstHost": null,
	"protocol": null,
	"username": "user@devo.com",
	"application": null,
	"engine": "pilot-8-pro-cloud-custom-aws-us-east-1",
	"extraData": "{\"userIdentity_principalId\":\"AIDA3Y41I57DEUQSSBD1ZE\",\"mfaUsed\":\"No\",\"loginResponse\":\"Failure\",\"userIdentity_type\":\"IAMUser\",\"count\":\"1\",\"userName\":\"jason.green\",\"eventdate\":\"2023-04-03+13%3A39%3A00.0\"}",
	"alertDate": null,
	"status": 0,
	"ack_status_date": null,
	"createDate": 1680529252000,
	"updateDate": null,
	"scaled": false,
	"digest": "5ad6c04d1f29125dfae0de480584f9c39362f4f3",
	"uniquedigest": "f8ca95e3ed3c853b7f39dd39c099b8547c9e2f7b",
	"postAlertAction": null,
	"contextLabel": null,
	"contextSubscription": null,
	"shouldSend": false,
	"alertOwner": null,
	"fullExtraData": null,
	"alertType": null,
	"alertMitreTactics": null,
	"alertMitreTechniques": null,
	"alertPriority": null,
	"alertDefinition": null,
	"allExtraDataFields": null,
	"tags": null,
	"entities": null,
	"commentsList": [],
	"integrations": null,
	"contexto": null
}
```

## Workflow Library Example

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