Skip to main content
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": "67dc2c21-1a65-4c67-bd5b-b4645ccca881",
    "type": "incident_permission_set_resources",
    "attributes": {
      "incident_permission_set_id": "3479d885-5374-42e3-a43f-d131e714e803",
      "kind": "incident_types",
      "private": false,
      "resource_id": "97043547-3e5e-401a-8f2c-da7c6f6fb6b4",
      "resource_type": "IncidentType",
      "updated_at": "2025-12-05T21:25:55.666-08:00",
      "created_at": "2025-12-05T21:25:55.666-08: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
data
object
required

Response

incident_permission_set_resource created

data
object
required