Integrate Convert Experiences with Justuno

This Article Will Help You:


Convert-Justuno Integration

Justuno is a popup, special promotions, and notifications software platform. Designed to increase engagement, capture more mails, increase conversions, and help companies reduce shopping cart abandonment.

This article will walk you through how to place a json object on any page you wish to utilize the Justuno promotion rules based on Convert data. This way you will be able to apply your promotions at the right time, at the right page and the right audience.

For each experiment, the integration will pass along the experiment name and variation name that the visitor is currently bucketed into (if any).

Add Tracking Code Snippets

Make sure the Convert tracking code and the Justuno embed code are installed on your page. Justuno tracking code looks like this:

Activate Integration Manually

You should add this extra code to your website to track custom data (from the Justuno documentation we used method 2 with json object):

		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 ");

window.juapp=window.juapp||function(){(window.juapp.q=window.juapp.q||[]).push(arguments)};

var ju_options =
{
'targeting': {
'Variation_Name':curVariant,
'Experiment_Name':curExperimentName
}
};

View Convert Data in Justuno

You will be able to create rules for your promotions based on your Convert Experiences data, e.g. present a promotion only when people are bucketed to Variation (and not to Original from a Convert Experiment).

Once logged in, go to Promotions and search for the custom json object you created and build the advanced rule as you wish.

 

If you recently installed Justuno, please allow 48hrs for Justuno to collect information on your website. Once you have collected your Convert data to Justuno, you will then be able to send it to several other tools through integrations:

Troubleshooting

You can use console and ju_options to see what is saved in your targeting variables: