PUT
/
v1
/
form_sets
/
{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": "a0b818d0-e3d3-4bcf-8d3a-afca85b3e5f5",
    "type": "form_sets",
    "attributes": {
      "name": "Test update custom form set",
      "slug": "test",
      "is_default": false,
      "forms": [
        "web_new_incident_form"
      ],
      "updated_at": "2025-06-19T02:39:36.816-07:00",
      "created_at": "2025-06-19T02:39:34.048-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

form_set updated

The response is of type object.