Skip to content
  • There are no suggestions because the search field is empty.

Integrate Convert Experiences with FullStory

Track Convert Experiments in FullStory for Deep User Session Insights & Behavioral Analytics

Author:
Dionysia Kontotasiou

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 configData = window['convert']['data']['experiments'] || window['convert']['data']['experiences'] || {};
var isArray = Array.isArray(configData);

// Get current experiments/experiences
var currentExperiments = window['convert']['currentData']['experiments'] ||
window['convert']['currentData']['experiences'] || {};

// Helper function to find experience in config
function getExperienceFromConfig(id) {
if (isArray) {
// Latest: Array of objects - need to find by id
return configData.find(function(exp) {
return String(exp.id) === String(id);
}) || null;
} else {
// Legacy: Object keyed by id
return configData[id] || null;
}
}

for (var key in currentExperiments) {
if (!currentExperiments.hasOwnProperty(key)) {
continue;
}

var currentExperiment = currentExperiments[key];
var configExperience = getExperienceFromConfig(key);

// Get experiment name
// Legacy: .n or .test_name | Latest: .name
var curExperimentName = "unknown experiment name";
if (configExperience) {
curExperimentName = configExperience.n || configExperience.name || configExperience.test_name || curExperimentName;
}
curExperimentName = curExperimentName.replace("Test #", "Test ");

// Get variant name
// Legacy: variation_name | Latest: variation.name
var curVariant = "unknown variant";
if (currentExperiment['variation_name']) {
curVariant = currentExperiment['variation_name'];
} else if (currentExperiment.variation && currentExperiment.variation.name) {
curVariant = currentExperiment.variation.name;
}
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: