Retrieves a specific incident_event by id
curl --request GET \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "aefc1b51-a8f0-401e-9c96-5c2bae95ac8c",
"type": "incident_events",
"attributes": {
"event": "Natus laboriosam modi possimus.",
"event_raw": "Natus laboriosam modi possimus.",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Grady Torphy",
"occurred_at": "2025-07-22T16:14:36.206-07:00",
"starred_at": null,
"created_at": "2025-07-22T16:14:36.206-07:00",
"updated_at": "2025-07-22T16:14:36.206-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "aefc1b51-a8f0-401e-9c96-5c2bae95ac8c",
"type": "incident_events",
"attributes": {
"event": "Natus laboriosam modi possimus.",
"event_raw": "Natus laboriosam modi possimus.",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Grady Torphy",
"occurred_at": "2025-07-22T16:14:36.206-07:00",
"starred_at": null,
"created_at": "2025-07-22T16:14:36.206-07:00",
"updated_at": "2025-07-22T16:14:36.206-07:00"
}
}
}