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": "a51d8a6b-3268-4e61-a198-6168b5af8337",
    "type": "incident_feedbacks",
    "attributes": {
      "rating": 2,
      "rating_humanized": "Neither satisfied nor dissatisfied",
      "feedback": "Sunt porro illum est.",
      "anonymous": false,
      "updated_at": "2025-07-29T05:38:24.432-07:00",
      "created_at": "2025-07-29T05:38:24.432-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.