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": "6c125cf2-630a-4c20-91fd-38029b4468cc",
    "type": "form_sets",
    "attributes": {
      "name": "Test update custom form set",
      "slug": "test",
      "is_default": false,
      "forms": [
        "web_new_incident_form"
      ],
      "updated_at": "2025-03-26T23:19:43.425-07:00",
      "created_at": "2025-03-26T23:19:40.014-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
data
object
required

Response

200
application/vnd.api+json
form_set updated
data
object
required