Avatar

Community Advisor

Hi @isolda  - you can do it through profile-scripts.

 

Step 1: Configure Test 1 experiences to pass the URL value for Test 2, using adobe.target.trackEvent() method. Using an mbox-parameter, pass an empty value from Test 1-Experience A and URL-value from Test 1-Experience B. 

adobe.target.trackEvent({
"mbox": "collect-test1-url",
"params": {
"test1_url": <URL> // This value should be empty in case of Experience A
}
});

Step 2: Configure a profile-script to read the mbox-paramater value from Step 1 above. 

if (mbox.name == 'collect-test1-url' && mbox.param('test1_url')){
return mbox.param('test1_url');
}

Step 3: Use this profile-script in your audiences

 

Hope this helps,

Regards

Rajneesh