Storing incomplete user answers, even when they haven’t yet completed the entire funnel.
Partial data capture is easy to achieve in Embeddables.
In fact, it is typically enabled by default, because Embeddables collects users’ answers as they provide them, and (depending on the field’s settings) stores them for use in analytics later on.
There are also ways to implement custom partial data capture where you send user answers to your own backend, e.g. your API or a CRM.
As described in the User Data guide, each user answer can be stored on three different levels:
Therefore, any fields that are configured with option #3 will automatically be captured as partial data, as the user enters the information, and will be visible later in the Embeddables Web App (to logged-in users with sufficient permissions).
To send partial user data to your own backend, you can:
Create a custom code Action
+ Add New Action
Add
Write your custom code
Add Triggers for user events
WHEN Page IS Changed
to send data on every page changeWHEN Button KEY submit_button IS Clicked
to send on button clickAdd
Test the integration
Read more about Actions and Triggers in Embeddables.
Read more about writing Custom Code in Embeddables, including all the available arguments passed in to the function.
Storing incomplete user answers, even when they haven’t yet completed the entire funnel.
Partial data capture is easy to achieve in Embeddables.
In fact, it is typically enabled by default, because Embeddables collects users’ answers as they provide them, and (depending on the field’s settings) stores them for use in analytics later on.
There are also ways to implement custom partial data capture where you send user answers to your own backend, e.g. your API or a CRM.
As described in the User Data guide, each user answer can be stored on three different levels:
Therefore, any fields that are configured with option #3 will automatically be captured as partial data, as the user enters the information, and will be visible later in the Embeddables Web App (to logged-in users with sufficient permissions).
To send partial user data to your own backend, you can:
Create a custom code Action
+ Add New Action
Add
Write your custom code
Add Triggers for user events
WHEN Page IS Changed
to send data on every page changeWHEN Button KEY submit_button IS Clicked
to send on button clickAdd
Test the integration
Read more about Actions and Triggers in Embeddables.
Read more about writing Custom Code in Embeddables, including all the available arguments passed in to the function.