Skip to main content
GET
/
v1
/
alert_events
List alert events across alerts
curl --request GET \
  --url https://api.rootly.com/v1/alert_events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "attributes": {
        "alert_id": "<string>",
        "source": "<string>",
        "created_at": "<string>",
        "updated_at": "<string>",
        "user_id": 123,
        "details": "<string>"
      }
    }
  ],
  "meta": {
    "next_cursor": "<string>",
    "current_page": 123,
    "next_page": 123,
    "prev_page": 123,
    "total_count": 123,
    "total_pages": 123
  },
  "links": {
    "self": "<string>",
    "first": "<string>",
    "prev": "<string>",
    "next": "<string>",
    "last": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rootly.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

include
string
page[size]
integer

Page size (max 50).

page[after]
string

Cursor token from the previous response's meta.next_cursor. Pass the same sort value used to obtain the cursor.

sort
enum<string>

Sort by created_at. Defaults to created_at (oldest-first). Use -created_at for newest-first.

Available options:
created_at,
-created_at
filter[kind]
enum<string>
Available options:
informational,
notification,
action,
status_update,
recording,
alert_grouping,
alert_urgency,
alert_routing,
note,
noise,
maintenance,
deferral
filter[action]
enum<string>
Available options:
created,
escalation_policy_paged,
ignored_alert_request,
emailed,
slacked,
called,
texted,
notified,
skipped,
opened,
retriggered,
answered,
acknowledged,
escalated,
paged,
resolved,
attached,
snoozed,
triggered,
open,
updated,
added,
removed,
marked,
not_marked,
muted,
deferred
filter[alert_id]
string
filter[created_at][gt]
string
filter[created_at][gte]
string
filter[created_at][lt]
string
filter[created_at][lte]
string

Response

200 - application/vnd.api+json

success

data
object[]
required
meta
object
required

Cursor-pagination meta. total_count and total_pages are nullable because the feed does not run a COUNT query.