What's the exact syntax for populating data layer elements in Adobe Launch using ACDL?
Simple question for you folks, but I don't get it. It's the first time I am using the event driven approach in Adobe Launch.
I manage to trigger the server call for overlay events, but do not know how to retrieve the values from eventInfo attributes. I tried "event.message.eventInfo.articleName", "adobeDataLayer.eventInfo.articleName", "eventInfo.articleName" but none of these return any value, so I wonder what's the exact syntax to retrieve the values? Do I need to configure anything else in Launch before? I am using version 2.0.2 of the Adobe Client Data Layer.
window.adobeDataLayer.push({
"event": "overlay",
"eventInfo": {
"articleId": "10787",
"articleName": "Lorem Ipsum",
"articleDateTime": "4.12.2024",
"contentType": "news",
"rating": "25"
}
});

