PUT
/
v1
/
incident_permission_sets
/
{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": "fd2a6bac-ce5e-42d7-8dd7-308f07afb2cc",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 196,
      "name": "Security",
      "slug": "nemo-magni-deleniti-quisquam",
      "description": "Quaerat possimus ab odit.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-05-08T00:21:12.927-07:00",
      "created_at": "2025-05-08T00:21:12.673-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json
incident_permission_set updated

The response is of type object.