Actions
List Alerts
Get a list of alerts using the Unified Alert Management GraphQL API.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| After Cursor | Cursor position returned by the last request (pageInfo.endCursor in the response). |
| Filters | A list of filter conditions to apply to the alerts query, in GraphQL syntax. For Example: [{fieldId: "detectedAt", dateTimeRange: {start: 1735689600000}}]. |
| Page Size | The maximum number of alerts to fetch per page. |
| Sort By | The field to sort the results by. |
| Sort Order | Select the direction to sort the results by. |
{
"data": {
"alerts": {
"edges": [
{
"node": {
"id": "<string>",
"createdAt": "2026-01-01T15:56:21.535999Z",
"detectedAt": "2026-01-01T15:56:21.535999Z",
"name": "<string>",
"status": "<string>",
"assignee": {
"fullName": "<string>"
}
}
}
],
"pageInfo": {
"hasNextPage": false,
"endCursor": null
},
"totalCount": 1
}
}
}
Was this page helpful?