List incident feedbacks
curl --request GET \
--url https://api.rootly.com/v1/incidents/{incident_id}/feedbacks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
success
Show child attributes
Unique ID of the incident feedback
incident_feedbacks Show child attributes
The feedback of the incident feedback
The rating of the incident feedback
4, 3, 2, 1, 0 Is the feedback anonymous?
Date of creation
Date of last update
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incidents/{incident_id}/feedbacks \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}