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": "8ba38ee5-50f2-42e4-a0f0-6cc14466c6bd",
"type": "incident_permission_sets",
"attributes": {
"team_id": 224,
"name": "Infrastructure",
"slug": "infrastructure",
"description": null,
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-02T12:38:21.515-07:00",
"created_at": "2025-08-02T12:38:21.515-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_permission_set created
The response is of type object
.
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": "8ba38ee5-50f2-42e4-a0f0-6cc14466c6bd",
"type": "incident_permission_sets",
"attributes": {
"team_id": 224,
"name": "Infrastructure",
"slug": "infrastructure",
"description": null,
"private_incident_permissions": [
"read"
],
"public_incident_permissions": [
"read"
],
"updated_at": "2025-08-02T12:38:21.515-07:00",
"created_at": "2025-08-02T12:38:21.515-07:00"
}
}
}