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

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

Returns a paginated list of issues alerts for the organization.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| items | <span class="proto-type proto-type-message">array of [<i class="proto-type-part">bitdrift</i><i class="proto-type-dot">.</i><i class="proto-type-part">public</i><i class="proto-type-dot">.</i><i class="proto-type-part">unary</i><i class="proto-type-dot">.</i><i class="proto-type-part">alerts</i><i class="proto-type-dot">.</i><i class="proto-type-part">v1</i><i class="proto-type-dot">.</i><i class="proto-type-part">GetAllIssueAlertsResponse</i><i class="proto-type-dot">.</i><i class="proto-type-part">Item</i>](#bitdrift.public.unary.alerts.v1.GetAllIssueAlertsResponse.Item "bitdrift.public.unary.alerts.v1.GetAllIssueAlertsResponse.Item")</span> | Issues alerts returned for the requested page. |
| total_alerts | <span class="proto-type proto-type-primitive">uint32</span> | Total number of issues alerts that match the request. |

</section>
<p class="h4">Example</p>
```json
{
  "items": [
    {
      "alert_description": "Triggers when crash count exceeds the configured threshold.",
      "alert_name": "Crash volume",
      "alert_uuid": "0197eb79-ef35-72ec-8e9f-91a4123c18c5",
      "disabled": false,
      "last_resolved_at": "2024-01-15T09:30:00Z",
      "last_triggered_at": "2024-01-15T09:30:00Z",
      "view_id": "123",
      "view_name": "iOS production crashes"
    }
  ],
  "total_alerts": 8
}
```

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

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

Describes one issues alert in the list response.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| view_id | <span class="proto-type proto-type-primitive">string</span> | View ID the alert belongs to. |
| view_name | <span class="proto-type proto-type-primitive">string</span> | Name of the view the alert belongs to. |
| alert_name | <span class="proto-type proto-type-primitive">string</span> | Short name of the alert. |
| alert_description | <span class="proto-type proto-type-primitive">string</span> | Description of the alert. |
| alert_uuid | <span class="proto-type proto-type-primitive">string</span> | Stable UUID for the alert. |
| disabled | <span class="proto-type proto-type-primitive">bool</span> | Whether the alert is currently disabled. |
| last_triggered_at | <span class="proto-type proto-type-well-known">[google.protobuf.Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp "google.protobuf.Timestamp")</span> | Time when the alert most recently triggered. |
| last_resolved_at | <span class="proto-type proto-type-well-known">[google.protobuf.Timestamp](https://protobuf.dev/reference/protobuf/google.protobuf/#timestamp "google.protobuf.Timestamp")</span> | Time when the alert most recently resolved. |

</section>
<p class="h4">Example</p>
```json
{
  "alert_description": "Triggers when crash count exceeds the configured threshold.",
  "alert_name": "Crash volume",
  "alert_uuid": "0197eb79-ef35-72ec-8e9f-91a4123c18c5",
  "disabled": false,
  "last_resolved_at": "2024-01-15T09:30:00Z",
  "last_triggered_at": "2024-01-15T09:30:00Z",
  "view_id": "123",
  "view_name": "iOS production crashes"
}
```

