Creates a new form_set from provided data
curl --request POST \
--url https://api.rootly.com/v1/form_sets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}'
{
"data": {
"id": "146de48a-20b9-46e5-b601-689e5aa28d2d",
"type": "form_sets",
"attributes": {
"name": "Test custom form set",
"slug": "test-custom-form-set",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-30T02:09:45.970-07:00",
"created_at": "2025-07-30T02:09:45.970-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.rootly.com/v1/form_sets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}'
{
"data": {
"id": "146de48a-20b9-46e5-b601-689e5aa28d2d",
"type": "form_sets",
"attributes": {
"name": "Test custom form set",
"slug": "test-custom-form-set",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-30T02:09:45.970-07:00",
"created_at": "2025-07-30T02:09:45.970-07:00"
}
}
}