Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
incident_role updated
Update a specific incident_role by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_roles",
"attributes": {
"name": "<string>",
"summary": "<string>",
"description": "<string>",
"position": 123,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": true
}
}
}'{
"data": {
"id": "995fdc4d-9d2e-4611-821b-4d457f299e9c",
"type": "incident_roles",
"attributes": {
"slug": "my-incident-role-updated",
"name": "My Incident Role Updated",
"summary": "My Incident Role Summary Updated",
"description": "My Incident Role Description Updated",
"position": 2,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-11-21T14:32:05.171-08:00",
"updated_at": "2025-11-21T14:32:07.124-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
incident_role updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_roles/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_roles",
"attributes": {
"name": "<string>",
"summary": "<string>",
"description": "<string>",
"position": 123,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": true
}
}
}'{
"data": {
"id": "995fdc4d-9d2e-4611-821b-4d457f299e9c",
"type": "incident_roles",
"attributes": {
"slug": "my-incident-role-updated",
"name": "My Incident Role Updated",
"summary": "My Incident Role Summary Updated",
"description": "My Incident Role Description Updated",
"position": 2,
"optional": true,
"enabled": true,
"allow_multi_user_assignment": false,
"created_at": "2025-11-21T14:32:05.171-08:00",
"updated_at": "2025-11-21T14:32:07.124-08:00"
}
}
}