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": "6b641e43-28bb-449a-9702-8b6624d5a48d",
"type": "incident_feedbacks",
"attributes": {
"rating": 3,
"rating_humanized": "Somewhat satisfied",
"feedback": "Feedback updated",
"anonymous": false,
"updated_at": "2025-08-01T13:27:20.367-07:00",
"created_at": "2025-08-01T13:27:18.891-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_feedback updated
The response is of type object
.
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": "6b641e43-28bb-449a-9702-8b6624d5a48d",
"type": "incident_feedbacks",
"attributes": {
"rating": 3,
"rating_humanized": "Somewhat satisfied",
"feedback": "Feedback updated",
"anonymous": false,
"updated_at": "2025-08-01T13:27:20.367-07:00",
"created_at": "2025-08-01T13:27:18.891-07:00"
}
}
}