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

# Get Alarm History

Get the alarm history for a specific alarm by its ID.

<Note>
  External Documentation

  To learn more, visit the [LogRhythm documentation](https://developers.exabeam.com/logrhythm-siem/reference/get_alarms-alarmid-history).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                           |
  | --------- | ----------------------------------------------------- |
  | Alarm ID  | The ID of the alarm whose history to retrieve.        |
  | Direction | The direction to order the results.                   |
  | Limit     | The maximum number of results to return.              |
  | Offset    | The starting position from which to retrieve results. |
  | Order By  | The name of the field to order the results by.        |
  | Sort      | Select to sort the results.                           |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter    | Description                                                                              |
  | ------------ | ---------------------------------------------------------------------------------------- |
  | Date Updated | Only return alarm history entries that were updated on or after the specified timestamp. |
  | Person ID    | Filter results by the ID of a person.                                                    |
  | Type         | Filter results by the type of alarm history to retrieve.                                 |
</div>

## Example Output

```json theme={"dark"}
{
	"statusCode": 0,
	"statusMessage": "string",
	"responseMessage": "string",
	"AlarmHistoryDetails": [
		{
			"alarmId": 0,
			"personId": 0,
			"comments": "string",
			"dateUpdated": "string",
			"dateInserted": "string"
		}
	]
}
```

## Workflow Library Example

[Get Alarm History with Logrhythm and Send Results Via Email](https://library.blinkops.com/workflows/get-alarm-history-with-logrhythm-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/get-alarm-history-with-logrhythm-and-send-results-via-email/canvas" />
</div>
