Hi Team,
I am new and a very beginner to adobe launch and i am confused in implementing event analytics in adobe launch. I have digitalData object with events like shown below.. How i need to capture all these events and push to adobe launch? Kindly share me the documentation reference URL to implement from scratch. That should be very helpful.
digitalData.event =
[
{
"eventInfo": {
"eventName": "From Component",
"eventAction": "Content Click",
"eventLabel": "label name",
"type": "click",
"timestamp": 1566513244361
},
"attributes": {
"target": {
"class": "link",
"text": "submit",
"action": "click"
}
}
},
{
"eventInfo": {
"eventName": "From Component2",
"eventAction": "Content Click",
"eventLabel": "new label name",
"type": "click",
"timestamp": 1566513244361
},
"attributes": {
"target": {
"class": "link",
"text": "lorem",
"action": "click"
}
}
}
]