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

Returns a list of actions (alerts) that have been generated for your account.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                           |
  | --------- | --------------------------------------------------------------------------------------------------------------------- |
  | Check IDs | Comma-separated list of check identifiers. Limit results to actions generated from these checks. Default: all checks. |
  | From      | Only include actions generated later than this timestamp. Format is UNIX time.                                        |
  | Limit     | Limits the number of returned results to the specified quantity.                                                      |
  | Offset    | Offset for listing.                                                                                                   |
  | Status    | Comma-separated list of statuses. Limit results to actions with these statuses. Default: all statuses.                |
  | To        | Only include actions generated prior to this timestamp. Format is UNIX time.                                          |
  | User IDs  | Comma-separated list of user identifiers. Limit results to actions sent to these users. Default: all users.           |
  | Via       | Comma-separated list of via mediums. Limit results to actions with these mediums. Default: all mediums.               |
</div>

## Example Output

```json theme={"dark"}
{
	"actions": {
		"alerts": [
			{
				"charged": true,
				"checkid": 241688,
				"messagefull": "PingdomAlert UP: MyCheck (example.com) is UP again at 2010-12-13 14:50:54. Downtime: 12m.",
				"messageshort": "up",
				"sentto": "46-555555",
				"status": "delivered",
				"time": 1292248276,
				"userid": 111250,
				"username": "John Doe",
				"via": "sms"
			}
		]
	}
}
```

## Workflow Library Example

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