Retrieves a specific incident_feedback by id
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"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_feedback found
The response is of type object
.
Was this page helpful?
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"
}
}
}