Expand my Community achievements bar.

Target data into GA4 by Tealium

Avatar

Level 1

Hello, how could integrate target data into GA4 by tealium ?

2 Replies

Avatar

Community Advisor

Hi @InèsHe ,

 

To send Adobe Target data into Google Analytics 4 (GA4) using Tealium, you need to configure a Tealium tag to capture relevant Adobe Target data from the data layer, map those variables to the appropriate custom dimensions and metrics in GA4, and then send the data as events to your GA4 property through the Tealium GA4 connector; essentially, you'll use Tealium as the intermediary to collect Target data and send it to GA4 in a structured format.

Avatar

Level 1

Hi @pradnya_balvir ,
Thanks for your answer.

So this type of dataLayer could work ? : 

window.dataLayer.push({
event: "targetExperience",
experienceName: "Test A/B Homepage",
variant: "B",  
experienceId: "exp_001",  
userId: "12345", // ID utilisateur (si disponible)
sessionId: "sess_abc123"
pageUrl: window.location.href,
Title: document.title,  
timestamp: new Date().toISOString(), 
platform: "web",  
}
});