POST
/
v1
/
incident_permission_sets
/
{incident_permission_set_id}
/
resources
Creates an incident_permission_set_resource
curl --request POST \
  --url https://api.rootly.com/v1/incident_permission_sets/{incident_permission_set_id}/resources \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "<string>",
      "kind": "severities",
      "private": true,
      "resource_id": "<string>",
      "resource_type": "<string>",
      "severity_params": {
        "fully_enabled": true,
        "create_enabled": false,
        "applies_to_unassigned": true,
        "severity_ids": [
          "<string>"
        ]
      }
    }
  }
}'
{
  "data": {
    "id": "2530298a-9907-44ea-b1c0-7291a0242905",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "b66da7e2-9e6c-4a1e-946e-8780f592c00e",
      "kind": "incident_types",
      "private": false,
      "resource_id": "2f5eb54c-860d-4e06-ba52-2b7071e9505d",
      "resource_type": "IncidentType",
      "updated_at": "2025-07-15T12:53:08.692-07:00",
      "created_at": "2025-07-15T12:53:08.692-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

incident_permission_set_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

incident_permission_set_resource created

The response is of type object.