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": "6bf0c510-4e90-47e0-82b0-0eb108eb2383",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "013bf28f-c153-4de2-a9a1-c8fd81426c75",
"kind": "incident_types",
"private": false,
"resource_id": "99481dec-b323-4318-bd9f-2aa76d36b008",
"resource_type": "IncidentType",
"updated_at": "2025-08-21T23:44:35.477-07:00",
"created_at": "2025-08-21T23:44:35.477-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": "6bf0c510-4e90-47e0-82b0-0eb108eb2383",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "013bf28f-c153-4de2-a9a1-c8fd81426c75",
"kind": "incident_types",
"private": false,
"resource_id": "99481dec-b323-4318-bd9f-2aa76d36b008",
"resource_type": "IncidentType",
"updated_at": "2025-08-21T23:44:35.477-07:00",
"created_at": "2025-08-21T23:44:35.477-07:00"
}
}
}