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": "d5e0a851-b8f1-4488-8dee-29f0e7110cd5",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Sang Adams",
"occurred_at": "2025-07-06T14:09:37.850-07:00",
"starred_at": null,
"created_at": "2025-07-06T14:09:37.850-07:00",
"updated_at": "2025-07-06T14:09:39.803-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_event updated
The response is of type object
.
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": "d5e0a851-b8f1-4488-8dee-29f0e7110cd5",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Sang Adams",
"occurred_at": "2025-07-06T14:09:37.850-07:00",
"starred_at": null,
"created_at": "2025-07-06T14:09:37.850-07:00",
"updated_at": "2025-07-06T14:09:39.803-07:00"
}
}
}