Creates a new feedback from provided data
curl --request POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/feedbacks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true
}
}
}
'{
"data": {
"id": "6b66a635-1c71-4c01-ac5f-278311337892",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "New Feedback",
"anonymous": true,
"updated_at": "2025-12-10T16:24:23.727-08:00",
"created_at": "2025-12-10T16:24:23.727-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_feedbacks incident_feedback created
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 POST \
--url https://api.rootly.com/v1/incidents/{incident_id}/feedbacks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true
}
}
}
'{
"data": {
"id": "6b66a635-1c71-4c01-ac5f-278311337892",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "New Feedback",
"anonymous": true,
"updated_at": "2025-12-10T16:24:23.727-08:00",
"created_at": "2025-12-10T16:24:23.727-08:00"
}
}
}