Skip to main content
PUT
/
v1
/
feedbacks
/
{id}
Update an incident feedback
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": "3d6c69d6-d23f-49a6-8d6b-629f34185f51",
    "type": "incident_feedbacks",
    "attributes": {
      "rating": 3,
      "rating_humanized": "Somewhat satisfied",
      "feedback": "Feedback updated",
      "anonymous": false,
      "updated_at": "2025-11-04T05:43:07.533-08:00",
      "created_at": "2025-11-04T05:43:05.409-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

incident_feedback updated

data
object
required