GET
/
forms
/
{formUUID}
/
fields
List fields
curl --request GET \
  --url https://api.fluxend.app/forms/{formUUID}/fields \
  --header 'Authorization: <authorization>'
[
  {
    "content": [
      {
        "createdAt": "<string>",
        "dateFormat": "<string>",
        "defaultValue": "<string>",
        "description": "<string>",
        "endDate": "<string>",
        "formUuid": "<string>",
        "isRequired": true,
        "label": "<string>",
        "maxLength": 123,
        "maxValue": 123,
        "minLength": 123,
        "minValue": 123,
        "options": "<string>",
        "pattern": "<string>",
        "startDate": "<string>",
        "type": "<string>",
        "updatedAt": "<string>",
        "uuid": "<string>"
      }
    ],
    "errors": [
      "<string>"
    ],
    "metadata": "<any>",
    "success": true
  }
]

Headers

Authorization
string
required

Bearer Token

Path Parameters

formUUID
string
required

Form UUID

Response

200
application/json

List of fields

The response is of type object[].