Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/vnd.api+json
Response
incident_feedback created
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": "894efe0f-fe9c-4882-b8dd-b664d13c791a",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "New Feedback",
"anonymous": true,
"updated_at": "2025-11-27T00:09:14.590-08:00",
"created_at": "2025-11-27T00:09:14.590-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_feedback created
Show child attributes
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": "894efe0f-fe9c-4882-b8dd-b664d13c791a",
"type": "incident_feedbacks",
"attributes": {
"rating": 4,
"rating_humanized": "Very satisfied",
"feedback": "New Feedback",
"anonymous": true,
"updated_at": "2025-11-27T00:09:14.590-08:00",
"created_at": "2025-11-27T00:09:14.590-08:00"
}
}
}