Update a specific form_set by id
curl --request PUT \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}'
{
"data": {
"id": "9682767d-4e98-4d89-ad0e-1d805f28dfc6",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-17T11:02:06.042-07:00",
"created_at": "2025-07-17T11:02:03.142-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
form_set updated
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/form_sets/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "form_sets",
"attributes": {
"name": "<string>",
"forms": [
"<string>"
]
}
}
}'
{
"data": {
"id": "9682767d-4e98-4d89-ad0e-1d805f28dfc6",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-07-17T11:02:06.042-07:00",
"created_at": "2025-07-17T11:02:03.142-07:00"
}
}
}