GET
/
v1
/
feedbacks
/
{id}
Retrieves an incident feedback
curl --request GET \
  --url https://api.rootly.com/v1/feedbacks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8cea4bd3-6811-419f-b238-e779347a4122",
    "type": "incident_feedbacks",
    "attributes": {
      "rating": 3,
      "rating_humanized": "Somewhat satisfied",
      "feedback": "A consequatur dignissimos repellendus.",
      "anonymous": false,
      "updated_at": "2025-08-18T10:35:26.660-07:00",
      "created_at": "2025-08-18T10:35:26.660-07: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

Response

200
application/vnd.api+json

incident_feedback found

The response is of type object.