Hi Tealium Community, I would like to start implementing an iOS app biu I have some doubts about events. We have this code in the documents: // With optional data
let optionalData = ["someKey":"someValue"]
Tealium.instanceForKey("uniqueInstanceKey")?.trackEventWithTitle("someEvent", dataSources:optionalData) So, would the following code be right to send both action and label inside an event? let optionalData = ["event_action":"someValue","event_label":"someValue"]
Tealium.instanceForKey("uniqueInstanceKey")?.trackEventWithTitle("someEvent", dataSources:optionalData) Afterwards, we'd map eventName as eventCategory, event_action as eventAction and event_label as eventLabel in the GA Tag. Best,
... View more