v2

latestOpenAPI 3.0.1MIT2026-07-3138140196.0 KB
Forms

List form blocks

Returns a list of all blocks in a form.

get/forms/{formId}/blocks

Path parameters

formIdstring required

The ID of the form

Response

List of blocks

idstring
namestring

Example response

{
  "blocks": [
    {
      "payload": {
        "allowedFiles": {
          "image/*": [
            ".png",
            ".jpg",
            ".gif"
          ],
          "application/*": [
            ".pdf"
          ]
        }
      }
    }
  ]
}