POST
/
v1
/
incidents
/
{incident_id}
/
events
curl --request POST \
  --url https://api.rootly.com/v1/incidents/{incident_id}/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_events",
    "attributes": {
      "event": "<string>",
      "visibility": "internal"
    }
  }
}'
{
  "data": {
    "id": "bd0f5b33-3cfd-46de-b820-621a6878f449",
    "type": "incident_events",
    "attributes": {
      "event": "New Event",
      "event_raw": "New Event",
      "kind": "event",
      "source": "web",
      "visibility": "external",
      "user_display_name": "Rootly",
      "occurred_at": "2025-05-08T00:20:25.189-07:00",
      "starred_at": null,
      "created_at": "2025-05-08T00:20:25.189-07:00",
      "updated_at": "2025-05-08T00:20:25.189-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json
incident_event created

The response is of type object.