Update a specific incident event by id
curl --request PUT \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_events",
"attributes": {
"event": "<string>",
"visibility": "internal"
}
}
}
'{
"data": {
"id": "a7ea624c-09f6-4175-a36c-13066230e021",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Ahmed Morar",
"occurred_at": "2025-12-10T18:25:58.304-08:00",
"starred_at": null,
"created_at": "2025-12-10T18:25:58.304-08:00",
"updated_at": "2025-12-10T18:26:01.411-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_event updated
Show child attributes
Unique ID of the incident event
incident_events Show child attributes
The summary of the incident event
Date of occurence
Date of creation
Date of last update
The visibility of the incident action item
internal, external Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/events/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_events",
"attributes": {
"event": "<string>",
"visibility": "internal"
}
}
}
'{
"data": {
"id": "a7ea624c-09f6-4175-a36c-13066230e021",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Ahmed Morar",
"occurred_at": "2025-12-10T18:25:58.304-08:00",
"starred_at": null,
"created_at": "2025-12-10T18:25:58.304-08:00",
"updated_at": "2025-12-10T18:26:01.411-08:00"
}
}
}