Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Body
application/vnd.api+json
Response
form_set updated
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": "dacc7a8b-086b-4c35-b656-3990581ab63e",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-11-06T13:22:49.234-08:00",
"created_at": "2025-11-06T13:22:44.351-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": "dacc7a8b-086b-4c35-b656-3990581ab63e",
"type": "form_sets",
"attributes": {
"name": "Test update custom form set",
"slug": "test",
"is_default": false,
"forms": [
"web_new_incident_form"
],
"updated_at": "2025-11-06T13:22:49.234-08:00",
"created_at": "2025-11-06T13:22:44.351-08:00"
}
}
}