Update a specific incident feedback by id
curl --request PUT \
--url https://api.rootly.com/v1/feedbacks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true
}
}
}
'{
"data": {
"id": "8db60ed5-ef6f-49df-b111-427eb1c0c109",
"type": "incident_feedbacks",
"attributes": {
"rating": 3,
"rating_humanized": "Somewhat satisfied",
"feedback": "Feedback updated",
"anonymous": false,
"updated_at": "2026-01-03T21:27:28.809-08:00",
"created_at": "2026-01-03T21:27:27.852-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_feedback updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/feedbacks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true
}
}
}
'{
"data": {
"id": "8db60ed5-ef6f-49df-b111-427eb1c0c109",
"type": "incident_feedbacks",
"attributes": {
"rating": 3,
"rating_humanized": "Somewhat satisfied",
"feedback": "Feedback updated",
"anonymous": false,
"updated_at": "2026-01-03T21:27:28.809-08:00",
"created_at": "2026-01-03T21:27:27.852-08:00"
}
}
}