Fields
Hidden Field
The Hidden Field adds a hidden field to the form.
Hidden fields are not displayed on the form, but are submitted with the form data.
Basic Usage
Adds a hidden
field to the form.
Parameters
See fields for common field parameters like validation and conditional rendering.
required
params.value An object containing settings for the value of the hidden field, see below.
required
type One Of: string
| jsonata
| apicall
optional
expression The value of the hidden field.
optional
api_params required
if value.type
is apicall
.
An object containing the parameters for the API call, see below.
required
method One Of: GET
| POST
| PUT
| DELETE
required
url The URL of the API call.
string[] optional
headers An array of headers to send with the API call.
optional
body The body of the API call, if the method is POST
or PUT
.