Skip to main content
POST
/
v1
/
form_sets
Creates a Form Set
curl --request POST \
  --url https://api.rootly.com/v1/form_sets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "form_sets",
    "attributes": {
      "name": "<string>",
      "forms": [
        "<string>"
      ]
    }
  }
}'
{
  "data": {
    "id": "4f1b5c5c-8a29-4d2d-8dd9-5add42552770",
    "type": "form_sets",
    "attributes": {
      "name": "Test custom form set",
      "slug": "test-custom-form-set",
      "is_default": false,
      "forms": [
        "web_new_incident_form"
      ],
      "updated_at": "2025-10-05T17:24:15.018-07:00",
      "created_at": "2025-10-05T17:24:15.018-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/vnd.api+json
data
object
required

Response

form_set created

data
object
required
I