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 updated
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": "be2bcb75-4ade-4df1-966f-503f6696ed0c",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Esteban Kuvalis",
"occurred_at": "2025-10-09T08:36:54.382-07:00",
"starred_at": null,
"created_at": "2025-10-09T08:36:54.382-07:00",
"updated_at": "2025-10-09T08:36:56.478-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes
incident_event updated
Show child attributes
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": "be2bcb75-4ade-4df1-966f-503f6696ed0c",
"type": "incident_events",
"attributes": {
"event": "Event updated",
"event_raw": "Event updated",
"kind": "event",
"source": "web",
"visibility": "internal",
"user_display_name": "Esteban Kuvalis",
"occurred_at": "2025-10-09T08:36:54.382-07:00",
"starred_at": null,
"created_at": "2025-10-09T08:36:54.382-07:00",
"updated_at": "2025-10-09T08:36:56.478-07:00"
}
}
}