Hi, we are looking for a way to send in events with our own internal id to track it in case the event id is not representing the right count.
Found this (below) but says it is deprecated. Any ideas here how to proceed?
Hi, we are looking for a way to send in events with our own internal id to track it in case the event id is not representing the right count.
Found this (below) but says it is deprecated. Any ideas here how to proceed?
Hi @brajjany ,
The mobile and JS/web trackers offers the Global Contexts feature (web, mobile)
A possible solution would be to use that feature to associate a custom entity with your ID to all the events you track.
The procedure is:
Being your custom context you can add more than just the ID, in case you need extra info in data modelling phase.
Just to add to Alex’s answer since I know from the other thread that you use the Java tracker, it doesn’t have global contexts but you can attach contexts to your events by passing the context to the track method.
Thx for the answers guys!