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": "c911367f-f761-4533-9f6b-4edc5904e4f2",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 234,
      "name": "Minima ullam maxime ut.",
      "slug": "minima-ullam-maxime-ut",
      "description": "Possimus error et et.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-09-12T22:27:48.875-07:00",
      "created_at": "2025-09-12T22:27:48.875-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

incident_permission_set found

The response is of type object.