# <a id="bitdrift.public.unary.alerts.v1.GetIssueAlertHistoryRequest"></a>GetIssueAlertHistoryRequest

**Source definition:** [`src/bitdrift/public/unary/alerts/v1/issue_alerts.proto#L284-L304`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/alerts/v1/issue_alerts.proto#L284-L304>)

Requests alert history for a single issues alert.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| view_id | <span class="proto-type proto-type-primitive">string</span><br><em class="proto-field-annotation">between 1 and 255 chars</em> | The issues view ID that the alert is associated with. |
| alert_uuid | <span class="proto-type proto-type-primitive">string</span><br><em class="proto-field-annotation">between 1 and 255 chars</em> | The alert UUID that the history is being requested for. |
| start_time | <span class="proto-type proto-type-well-known">optional [google.protobuf.Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp "google.protobuf.Timestamp")</span> | The start time and end time of the alert history.  All alerts that were firing within the time range will be returned, regardless of whether they  were triggered before the start time or resolved after the end time. |
| end_time | <span class="proto-type proto-type-well-known">optional [google.protobuf.Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp "google.protobuf.Timestamp")</span> | End of the time range to return issues alert history for. |

</section>
<p class="h4">Example</p>
```json
{
  "alert_uuid": "0197eb79-ef35-72ec-8e9f-91a4123c18c5",
  "end_time": "2024-01-15T09:30:00Z",
  "start_time": "2024-01-15T09:30:00Z",
  "view_id": "123"
}
```

