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": "02edbdae-da9b-4e57-8a1d-68cd633b5da8",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-12-24T09:24:49.091-08:00",
"created_at": "2025-12-24T09:24:46.391-08:00"
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Show child attributes
form_set updated
Show child attributes
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": "02edbdae-da9b-4e57-8a1d-68cd633b5da8",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-12-24T09:24:49.091-08:00",
"created_at": "2025-12-24T09:24:46.391-08:00"
}
}
}