Integrate Convert Experiences with FullStory

This Article Will Help You:


Convert-FullStory Integration

FullStory helps companies record and analyze their customer interactions by recording user sessions, providing detailed step-by-step logs of everything customers did during their sessions and storing that information for later retrieval and analysis. FullStory can then be searched for specific events, including link usage, rage clicks or dead clicks. In addition to data on individual sessions, FullStory can also retrieve analytics on aggregate customer behavior, showing the most clicked items, the most rage clicked areas, the most navigated to sites, etc.

This article will walk you through how to send data from Convert experiences/variations to your FullStory account. For each experiment, the integration will pass along the experiment name and variation name that the visitor is currently bucketed into (if any) as a snapshot.

For more use cases regarding this integration you can read our FullStory blog article.

Add Tracking Code Snippets

Make sure the Convert tracking code and the FullStory recording snippet are installed on your pages. FullStory tracking code looks like this:

Activate Integration Manually

Once you have the two tracking codes in your website, then you should add this extra code to track custom user variables (one for experiment name and one for variation name). You can add this to the Project Global Javascript section or directly on your pages, after the Full Story and Convert tracking codes.

   
var refObject = window['convert']['data']['experiments']
for (var key in window["convert"]["currentData"]["experiments"]) {
if (!window["convert"]["currentData"]["experiments"].hasOwnProperty(key)) {
continue;
}}

var currentExperiment = window["convert"]["currentData"]["experiments"][key];
var curExperimentName = refObject[key] && refObject[key].n ? refObject[key].n : "unknown experiment name";
curExperimentName = curExperimentName.replace("Test #", "Test ");
var curVariant = currentExperiment['variation_name'] ? currentExperiment['variation_name'] : "unknown variant";
curVariant = curVariant.replace("Var #", "Variation ");


FS.setUserVars({
"Experiment Name" : curExperimentName,
"Variation Name" : curVariant
});

View Convert data in FullStory

After integration is enabled and your experiment is activated, you will be able to find in your FullStory account the custom user data that you sent. Use the OmniSearch feature to search for what you want. In each session two extra user variables will be added, one for experiment name and one for variation name: