Skip to main content
PUT
/
v1
/
form_sets
/
{id}
Update a Form Set
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"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Body

application/vnd.api+json
data
object
required

Response

form_set updated

data
object
required