v1

latestOpenAPI 3.0.02026-08-06165119238.1 KB
Form

Retrieve Form

Retrieves a single form.

get/v3/forms/{slug}

Path parameters

slugstring required

Unique Form identifier

Response

OK

titlestring
internal-descriptionstring
public-descriptionstring
registrationboolean

Example response

{
  "title": "Test",
  "internal-description": "This form is for testing",
  "public-description": "Please provide some info",
  "registration": true,
  "fields": [
    {
      "slug": "first-name",
      "placeholder": "first-name",
      "required": true,
      "order": 1
    }
  ]
}