GET
/
v1
/
incident_permission_sets
/
{id}
Retrieves an incident_permission_set
curl --request GET \
  --url https://api.rootly.com/v1/incident_permission_sets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ddc5389f-142f-4414-b90b-041854c31071",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 228,
      "name": "Nisi quo fugit deleniti.",
      "slug": "nisi-quo-fugit-deleniti",
      "description": "Ducimus et ipsa pariatur.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-08-21T23:44:47.135-07:00",
      "created_at": "2025-08-21T23:44:47.135-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Response

200
application/vnd.api+json

incident_permission_set found

The response is of type object.