Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
incident_feedback found
Retrieves a specific incident_feedback by id
curl --request GET \
--url https://api.rootly.com/v1/feedbacks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d9452126-0a66-4423-bf1b-42db13bcfbde",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "Molestias recusandae eaque voluptas.",
"anonymous": false,
"updated_at": "2025-09-15T22:54:02.963-07:00",
"created_at": "2025-09-15T22:54:02.963-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_feedback found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/feedbacks/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d9452126-0a66-4423-bf1b-42db13bcfbde",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "Molestias recusandae eaque voluptas.",
"anonymous": false,
"updated_at": "2025-09-15T22:54:02.963-07:00",
"created_at": "2025-09-15T22:54:02.963-07:00"
}
}
}