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": "323e3cae-e975-428c-99f0-9ac22c47a136",
"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-12-13T18:50:35.579-08:00",
"updated_at": "2025-12-13T18:50:37.290-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
incident_roles Show child attributes
The name of the incident role
The summary of the incident role
The description of the incident role
Position of the incident role
incident_role updated
Show child attributes
Unique ID of the incident role
incident_roles Show child attributes
The name of the incident role
Date of creation
Date of last update
The slug of the incident role
The summary of the incident role
The description of the incident role
Position of the incident role
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": "323e3cae-e975-428c-99f0-9ac22c47a136",
"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-12-13T18:50:35.579-08:00",
"updated_at": "2025-12-13T18:50:37.290-08:00"
}
}
}