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": "fbe0f9b6-e257-41ec-b7e5-16a569ac0e03",
    "type": "incident_permission_sets",
    "attributes": {
      "team_id": 227,
      "name": "Provident eaque est voluptas.",
      "slug": "provident-eaque-est-voluptas",
      "description": "Corporis aut dolorum vel.",
      "private_incident_permissions": [
        "read"
      ],
      "public_incident_permissions": [
        "read"
      ],
      "updated_at": "2025-07-09T12:21:41.724-07:00",
      "created_at": "2025-07-09T12:21:41.724-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/vnd.api+json

incident_permission_set found

The response is of type object.