List incident_permission_sets
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
],
"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
Show child attributes
Unique ID of the incident permission set
incident_permission_sets Show child attributes
The incident permission set name.
The incident permission set slug.
The incident permission set description.
create, read, update, delete create, read, update, delete Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/incident_permission_sets \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
],
"links": {
"self": "<string>",
"first": "<string>",
"prev": "<string>",
"next": "<string>",
"last": "<string>"
}
}