eCommerce companies typically use Monetate for its A/B Split Testing functionality, which automatically sets up an Experiment ID, Experiment Key, and a Variation. This information can be useful capture in Noibu's session recordings so you can quickly see which variant a session occurs on.
Using these instructions, we can add Noibu's SDK into the integration in Monetate. When creating the new integration, fill out the Title, enter the JavaScript code block below, and check the Enable by default for all new experiences box.
We can pass information into a session using the same method. The block of code that you can use as the Third Party is the following:
for (var i = 0; i < campaigns.length; i++) {
window.NOIBUJS.addCustomAttribute ('ExperimentID', campaigns[i].id);
window.NOIBUJS.addCustomAttribute ('ExperimentKey', campaigns[i].key);
window.NOIBUJS.addCustomAttribute ('ExperimentVariation', campaigns[i].split);
}
Once this is in place, those three data points will be passed through to Noibu's session recordings, and you can search for them using the Custom ID Value filter option in the Sessions table.