You can personalize your visitors' experience by adding custom information to text components. You can use data from a form, or from managed users.
Any field included in a form can be used to customize a text component. For managed users, you can use ID, email, and name.
Set up the form and find the field reference
To use form details on a text component, you need:
- The form field reference ID: a unique ID for a specific field.
- A Navigate to page action: this allows the form to send a visitor to a different page and make the form submission available on that page.
- A code snippet to enter in the text component Content field.
Find the field reference ID
The reference ID is the unique identifier for each field in your form.
- In your form component, click the field you want to use. The right sidebar will open.
- In the Content tab, click the down arrow to expand the Reference section.
- In the Reference ID field, copy the value to your clipboard.
- You can use the preset value or enter your own unique value.
- Repeat for each field you want to use.
Add a Navigate to page action
- In your form component, click any field to expand the right sidebar.
- In the Actions tab, click + Add action.
- In the new window, click the Action dropdown menu.
- Select Navigate to page.
- Click the Page dropdown menu.
- Select a page to send the user to.
- Select the Send data to this page checkbox.
- Click Create action.
Create a code snippet
To customize your text component, you must use a code snippet. This will allow data from the form to be used in the component.
-
Copy the code that appears in the box below into a text editor:
{{params.fieldreference|default:"default wording"}}
-
Replace
fieldreference
with the field reference you want to use. -
Replace
default wording
(keep the double quotes) with a default text. This will be used if the form field is blank. - Paste the text into the text component.

If your interface has managed users, you can use code snippets to customize text components using their user ID, email, or name.
Managed user information | Code snippet to use |
ID | {{currentUser.id}} |
{{currentUser.email}} | |
Name | {{currentUser.name}} |
- In your text component, click to expand the right sidebar.
- In the Content field, enter a code snippet for the field you want to display.
- Repeat for each field you want to use.
- Click Save changes.
The space where you place the managed user information will appear as blank when editing your page.
You can also use form submissions and managed user data to personalize chatbot components.