Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/vnd.api+json
Response
incident_permission_set created
Creates a new incident_permission_set from provided data
curl --request POST \
--url https://api.rootly.com/v1/incident_permission_sets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
}'{
"data": {
"id": "a5774080-1e8e-46e0-aff1-74e9b78fcc4a",
"type": "incident_permission_sets",
"attributes": {
"team_id": 286,
"name": "Infrastructure",
"slug": "infrastructure",
"description": null,
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-10-28T14:26:33.085-07:00",
"created_at": "2025-10-28T14:26:33.085-07:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes
incident_permission_set created
Show child attributes
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/incident_permission_sets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "incident_permission_sets",
"attributes": {
"name": "<string>",
"slug": "<string>",
"description": "<string>",
"private_incident_permissions": [
"create"
],
"public_incident_permissions": [
"create"
]
}
}
}'{
"data": {
"id": "a5774080-1e8e-46e0-aff1-74e9b78fcc4a",
"type": "incident_permission_sets",
"attributes": {
"team_id": 286,
"name": "Infrastructure",
"slug": "infrastructure",
"description": null,
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-10-28T14:26:33.085-07:00",
"created_at": "2025-10-28T14:26:33.085-07:00"
}
}
}