Retrieves a specific incident_permission_set by id
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c136df0d-5a1b-4a2a-81fb-6e16100a1966",
"type": "incident_permission_sets",
"attributes": {
"team_id": 227,
"name": "Occaecati vel qui eaque.",
"slug": "occaecati-vel-qui-eaque",
"description": "Repellat quae qui distinctio.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-02T12:38:23.069-07:00",
"created_at": "2025-08-02T12:38:23.069-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c136df0d-5a1b-4a2a-81fb-6e16100a1966",
"type": "incident_permission_sets",
"attributes": {
"team_id": 227,
"name": "Occaecati vel qui eaque.",
"slug": "occaecati-vel-qui-eaque",
"description": "Repellat quae qui distinctio.",
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-02T12:38:23.069-07:00",
"created_at": "2025-08-02T12:38:23.069-07:00"
}
}
}