List incident_permission_set_resources
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets/{incident_permission_set_id}/resources \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "<string>",
"kind": "severities",
"private": true,
"resource_id": "<string>",
"resource_type": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
success
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets/{incident_permission_set_id}/resources \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "incident_permission_set_resources",
"attributes": {
"incident_permission_set_id": "<string>",
"kind": "severities",
"private": true,
"resource_id": "<string>",
"resource_type": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}