Forms
This feature is only available in paid plans. Please visit our pricing page to learn more.
Overview
A FusionAuth Form is a customizable object that contains one-to-many ordered steps. Each step is comprised of one or more Form Fields.
The following APIs are provided to manage Forms.
Create a Form
This API is used to create a new Form.
Request
Request Parameters
formId
UUIDDefaults to secure random UUIDThe Id to use for the new Form. If not specified a secure random UUID will be generated.
Request Body
form.data
ObjectAn object that can hold any information about the Form that should be persisted.
form.name
StringrequiredThe unique name of the Form.
form.steps
Array<Object>requiredAn ordered list of objects containing one or more Form Fields. A Form must have at least one step defined.
Steps manifest in two different ways. When the form type is adminRegistration
or adminUser
steps will be rendered as sections
because there are no multi-step forms within the UI. For registration
each step will be considered a step within a multi-step form.
Localization You may localize the displayed value of this key during registration by adding the key to your theme.
For example, if you specify the key value of {user-form-section}1
this key value be rendered in the UI, where 1
specifies the section number to adjust the value of.
Adding the following message to your theme will cause the first section of the User add or edit form to be rendered as “Optionally name me!“. This feature allows you to customize and optionally localize each section heading within the User form.
{user-form-section}1=Optionally name me!
You may optionally provide a specific label per tenant by prefixing the value the with the tenant Id as follows:
[cbeaf8fe-f4a7-4a27-9f77-c609f1b01856]{user-form-section}2=Tenant specific label for section 2
You may also optionally provide a specific label per application for a registration form by prefixing the value the with the application Id as follows:
cfb5fab7-b3b6-41bb-adfa-d23ac83a96e5]{registration-form-section}2=Application specific label for section 2
form.steps[x].fields
Array<UUID>An ordered list of Form Field Ids assigned to this step.
form.type
StringDefaults to registrationAvailable since 1.20.0The type of form being created, a form type cannot be changed after the form has been created. This type will be used to identify how this form can be utilized by FusionAuth.
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0
Prior to version 1.20.0
, the default form type was registration
.
Example Request JSON
{
"form": {
"data": {
"description": "This form customizes the registration experience."
},
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
]
}
}
Response
The response for this API contains the Form that was created.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
form.data
ObjectAn object that can hold any information about the Form that should be persisted.
form.id
UUIDThe unique Id of the Form.
form.insertInstant
LongThe instant that the Form was added to the FusionAuth database.
form.lastUpdateInstant
LongThe instant that the Form was last updated in the FusionAuth database.
form.name
StringThe unique name of the Form.
form.steps
An ordered list of objects containing one or more Form Fields.
form.steps[x].fields
An ordered list of Form Field Ids assigned to this step.
form.type
StringThe form type. The possible values are:
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0
Example Response JSON
{
"form": {
"data": {
"description": "This form customizes the registration experience."
},
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1562189072183,
"lastUpdateInstant": 1562189072183,
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
],
"type": "registration"
}
}
Retrieve a Form
This API is used to retrieve a single Form by unique Id or all of the configured Forms.
Request
Request Parameters
formId
UUIDrequiredThe unique Id of the Form to retrieve.
Response
The response for this API contains either a single Form or all of the Forms. When you call this API with an Id, the response will contain a single Form. When you call this API without an Id, the response will contain all of the Forms. Both response types are defined below along with an example JSON response.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
form.data
ObjectAn object that can hold any information about the Form that should be persisted.
form.id
UUIDThe unique Id of the Form.
form.insertInstant
LongThe instant that the Form was added to the FusionAuth database.
form.lastUpdateInstant
LongThe instant that the Form was last updated in the FusionAuth database.
form.name
StringThe unique name of the Form.
form.steps
An ordered list of objects containing one or more Form Fields.
form.steps[x].fields
An ordered list of Form Field Ids assigned to this step.
form.type
StringThe form type. The possible values are:
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0
Example Response JSON
{
"form": {
"data": {
"description": "This form customizes the registration experience."
},
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1562189072183,
"lastUpdateInstant": 1562189072183,
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
],
"type": "registration"
}
}
Response Body
forms
ArrayThe list of Form objects.
forms[x].data
ObjectAn object that can hold any information about the Form that should be persisted.
forms[x].id
UUIDThe unique Id of the Form.
forms[x].insertInstant
LongThe instant that the Form was added to the FusionAuth database.
forms[x].lastUpdateInstant
LongThe instant that the Form was last updated in the FusionAuth database.
forms[x].name
StringThe unique name of the Form.
forms[x].steps
Array<Object>An ordered list of objects containing one or more Form Fields.
forms[x].steps[x].fields
Array<UUID>An ordered list of Form Field Id’s assigned to this step.
forms[x].type
StringThe Form type. The possible values are:
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0#
Example Response JSON
{
"forms": [
{
"data": {
"description": "This form customizes the registration experience."
},
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1562189072183,
"lastUpdateInstant": 1562189072183,
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
],
"type": "registration"
}
]
}
Update a Form
This API is used to update an existing Form.
You must specify all of the properties of the Form when calling this API with the PUT
HTTP method. When used with PUT
, this API doesn’t merge the existing Form and your new data. It replaces the existing Form with your new data.
Utilize the PATCH
HTTP method to send specific changes to merge into an existing Form.
Request
When using the PATCH method, you can either use the same request body documentation that is provided for the PUT request for backward compatibility. Or you may use either JSON Patch/RFC 6902] or JSON Merge Patch/RFC 7396. See the PATCH documentation for more information.
When using the PATCH method with a Content-Type
of application/json
the provided request parameters will be merged into the existing object, this means all parameters are optional when using the PATCH method and you only provide the values you want changed. A null
value can be used to remove a value. Patching an Array
will result in all values from the new list being appended to the existing list, this is a known limitation to the current implementation of PATCH.
Request Parameters
formId
UUIDrequiredThe Id of the Form to update.
Request Body
form.data
ObjectAn object that can hold any information about the Form that should be persisted.
form.name
StringrequiredThe unique name of the Form.
form.steps
Array<Object>requiredAn ordered list of objects containing one or more Form Fields. A Form must have at least one step defined.
Steps manifest in two different ways. When the form type is adminRegistration
or adminUser
steps will be rendered as sections
because there are no multi-step forms within the UI. For registration
each step will be considered a step within a multi-step form.
Localization You may localize the displayed value of this key during registration by adding the key to your theme.
For example, if you specify the key value of {user-form-section}1
this key value be rendered in the UI, where 1
specifies the section number to adjust the value of.
Adding the following message to your theme will cause the first section of the User add or edit form to be rendered as “Optionally name me!“. This feature allows you to customize and optionally localize each section heading within the User form.
{user-form-section}1=Optionally name me!
You may optionally provide a specific label per tenant by prefixing the value the with the tenant Id as follows:
[cbeaf8fe-f4a7-4a27-9f77-c609f1b01856]{user-form-section}2=Tenant specific label for section 2
You may also optionally provide a specific label per application for a registration form by prefixing the value the with the application Id as follows:
cfb5fab7-b3b6-41bb-adfa-d23ac83a96e5]{registration-form-section}2=Application specific label for section 2
form.steps[x].fields
Array<UUID>An ordered list of Form Field Ids assigned to this step.
form.type
StringDefaults to registrationAvailable since 1.20.0The type of form being created, a form type cannot be changed after the form has been created. This type will be used to identify how this form can be utilized by FusionAuth.
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0
Prior to version 1.20.0
, the default form type was registration
.
Example Request JSON
{
"form": {
"data": {
"description": "This form customizes the registration experience."
},
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
]
}
}
Response
The response for this API contains the Form that was updated.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you are trying to update doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
form.data
ObjectAn object that can hold any information about the Form that should be persisted.
form.id
UUIDThe unique Id of the Form.
form.insertInstant
LongThe instant that the Form was added to the FusionAuth database.
form.lastUpdateInstant
LongThe instant that the Form was last updated in the FusionAuth database.
form.name
StringThe unique name of the Form.
form.steps
An ordered list of objects containing one or more Form Fields.
form.steps[x].fields
An ordered list of Form Field Ids assigned to this step.
form.type
StringThe form type. The possible values are:
adminRegistration
- This form can be used to customize the add and edit User Registration form in the FusionAuth UI. Available since 1.20.0adminUser
- This form can be used to customize the add and edit User form in the FusionAuth UI. Available since 1.20.0registration
- This form can be used for self service registration.selfServiceUser
- This form can be used for Self Service Account Management. Available since 1.26.0
Example Response JSON
{
"form": {
"data": {
"description": "This form customizes the registration experience."
},
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1562189072183,
"lastUpdateInstant": 1562189072183,
"name": "Custom Registration Form",
"steps": [
{
"fields": [
"68259c40-0b4e-4245-8956-7e5af0959c2b",
"00f24e72-52e2-4f55-8ea1-6a06bfe10df5"
]
},
{
"fields": [
"11a5b1b8-7ef5-476f-af7d-69e19796fa8b"
]
}
],
"type": "registration"
}
}
Delete a Form
This API is used to permanently delete a Form. A form cannot be deleted when in use by one or more applications.
Request
Request Parameters
formId
UUIDrequiredThe unique Id of the Form to delete.
Response
This API does not return a JSON response body.
Response CodesCode | Description |
---|---|
200 | The request was successful. The response will contain a JSON body. |
400 | The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present. |
401 | You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |