POST
/
v1
/
incident_permission_sets
Creates an incident_permission_set
curl --request POST \
  --url https://api.rootly.com/v1/incident_permission_sets \
  --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": "d7c173b2-9607-4d1b-9454-8c1d12627c21",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 231,
      "name": "Infrastructure",
      "slug": "infrastructure",
      "description": null,
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-09-14T12:15:19.786-07:00",
      "created_at": "2025-09-14T12:15:19.786-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/vnd.api+json

Response

incident_permission_set created

The response is of type object.