Retrieves a specific incident_permission_set_resource by id
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8c9cc4d9-0c7a-4f8c-abdf-1dd4f05c6082",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "fc09e470-91f6-4737-85f9-98e76721a862",
"kind": "incident_types",
"private": false,
"resource_id": "1721f231-8300-48c6-bf7d-a30c111266cd",
"resource_type": "IncidentType",
"updated_at": "2025-08-02T12:38:12.670-07:00",
"created_at": "2025-08-02T12:38:12.670-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set_resource found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_set_resources/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "8c9cc4d9-0c7a-4f8c-abdf-1dd4f05c6082",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "fc09e470-91f6-4737-85f9-98e76721a862",
"kind": "incident_types",
"private": false,
"resource_id": "1721f231-8300-48c6-bf7d-a30c111266cd",
"resource_type": "IncidentType",
"updated_at": "2025-08-02T12:38:12.670-07:00",
"created_at": "2025-08-02T12:38:12.670-07:00"
}
}
}