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": "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"
    }
  }
}

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.