GET
/
v1
/
events
/
{id}
Retrieves an incident event
curl --request GET \
  --url https://api.rootly.com/v1/events/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "413ae199-14c5-4e5d-80f5-1b5add72f52a",
    "type": "incident_events",
    "attributes": {
      "event": "Vitae distinctio unde amet.",
      "event_raw": "Vitae distinctio unde amet.",
      "kind": "event",
      "source": "web",
      "visibility": "internal",
      "user_display_name": "Jacque Wiza",
      "occurred_at": "2025-07-17T11:03:25.032-07:00",
      "starred_at": null,
      "created_at": "2025-07-17T11:03:25.032-07:00",
      "updated_at": "2025-07-17T11:03:25.033-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/vnd.api+json

incident_event found

The response is of type object.