Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_event created
Creates a new event from provided data
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": "475a11ff-a06e-447c-97f7-dd16c3de3124",
"type": "incident_events",
"attributes": {
"event": "New Event",
"event_raw": "New Event",
"kind": "event",
"source": "web",
"visibility": "external",
"user_display_name": "Rootly",
"occurred_at": "2025-11-21T14:31:03.515-08:00",
"starred_at": null,
"created_at": "2025-11-21T14:31:03.515-08:00",
"updated_at": "2025-11-21T14:31:03.515-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_event created
Show child attributes
Was this page helpful?
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": "475a11ff-a06e-447c-97f7-dd16c3de3124",
"type": "incident_events",
"attributes": {
"event": "New Event",
"event_raw": "New Event",
"kind": "event",
"source": "web",
"visibility": "external",
"user_display_name": "Rootly",
"occurred_at": "2025-11-21T14:31:03.515-08:00",
"starred_at": null,
"created_at": "2025-11-21T14:31:03.515-08:00",
"updated_at": "2025-11-21T14:31:03.515-08:00"
}
}
}