Update a specific incident feedback by id
curl --request PUT \
--url https://api.rootly.com/v1/feedbacks/{id} \
--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": "<string>",
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_feedbacks incident_feedback updated
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 PUT \
--url https://api.rootly.com/v1/feedbacks/{id} \
--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": "<string>",
"type": "incident_feedbacks",
"attributes": {
"feedback": "<string>",
"rating": 4,
"anonymous": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}
}