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": "<string>",
    "type": "form_sets",
    "attributes": {
      "name": "<string>",
      "is_default": true,
      "forms": [
        "<string>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>",
      "slug": "<string>"
    }
  }
}

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