Skip to main content
PUT
/
v1
/
incident_permission_sets
/
{id}
Update an incident_permission_set
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": "dcfcb3ef-d668-4e11-a0ba-fbdca65ad75f",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 344,
      "name": "Security",
      "slug": "repellat-est-nisi-enim",
      "description": "Rerum dolorem ipsam molestiae.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2026-01-10T22:57:18.007-08:00",
      "created_at": "2026-01-10T22:57:17.914-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

incident_permission_set updated

data
object
required