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

Gets a list of actionable alerts by IDs/filters.

<Note>
  External Documentation

  To learn more, visit the [Cybersixgill documentation](https://developer.cybersixgill.com/catalog/api/cc0617a9-858f-429e-8617-a9858fd29eff/doc).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                       |
  | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Organization ID | ID of the organization that the alert belongs to. Required for multi-tenant organizations. Can be obtained using the `List Organizations` action. |
  | Sort By         | Sort by a field.                                                                                                                                  |
  | Sort Order      | The order by which to sort.                                                                                                                       |
  | Status          | The status of the actionable alert.                                                                                                               |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter     | Description                                    |
  | ------------- | ---------------------------------------------- |
  | Alert Type ID | The ID of the alert type.                      |
  | From Date     | Get actionable alerts starting from this date. |
  | Is Read       | Filter by the read field.                      |
  | Limit         | The size of the page to fetch.                 |
  | Offset        | Pagination offset.                             |
  | Threat Level  | The threat level of the actionable alert.      |
  | Threat Type   | The threat type of the actionable alert.       |
  | To Date       | Get actionable alerts ending in this date.     |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"id": "testID",
		"threat_level": "imminent",
		"threats": [
			"exploit",
			"ddos"
		],
		"title": "actionable alert title",
		"content": "a lot of text",
		"read": true,
		"date": "2018-01-01 00:00:00",
		"user_id": "#12:0",
		"status": {
			"name": "in_treatment",
			"by_user": "#12:1"
		}
	}
]
```

## Workflow Library Example

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