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_permission_set updated
Update a specific incident_permission_set by id
curl --request PUT \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
}'
{
"data": {
"id": "85358cfe-817e-47e7-bdfd-fd47cbeb0d21",
"type": "incident_permission_sets",
"attributes": {
"team_id": 238,
"name": "Security",
"slug": "cumque-illum-beatae-est",
"description": "Tempore recusandae soluta placeat.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-09-16T17:14:49.947-07:00",
"created_at": "2025-09-16T17:14:49.654-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
Show child attributes
incident_permission_set updated
Show child attributes
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
}'
{
"data": {
"id": "85358cfe-817e-47e7-bdfd-fd47cbeb0d21",
"type": "incident_permission_sets",
"attributes": {
"team_id": 238,
"name": "Security",
"slug": "cumque-illum-beatae-est",
"description": "Tempore recusandae soluta placeat.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-09-16T17:14:49.947-07:00",
"created_at": "2025-09-16T17:14:49.654-07:00"
}
}
}