POST
/
v1
/
incident_permission_sets
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": "c253e0a3-5169-470f-b9ba-9682f3199107",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 189,
      "name": "Infrastructure",
      "slug": "infrastructure",
      "description": null,
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-05-29T17:44:53.513-07:00",
      "created_at": "2025-05-29T17:44:53.513-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

201
application/vnd.api+json

incident_permission_set created

The response is of type object.