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": "314c0e96-4761-4e59-86ca-5128d1973a68",
    "type": "incident_events",
    "attributes": {
      "event": "New Event",
      "event_raw": "New Event",
      "kind": "event",
      "source": "web",
      "visibility": "external",
      "user_display_name": "Rootly",
      "occurred_at": "2025-03-28T23:01:21.415-07:00",
      "starred_at": null,
      "created_at": "2025-03-28T23:01:21.415-07:00",
      "updated_at": "2025-03-28T23:01:21.415-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
data
object
required

Response

201
application/vnd.api+json
incident_event created
data
object
required