Track
Learn about the methods for tracking game activity.
Track View
To track a view in a game, call the TrackView()
method:
Dictionary<string, string> data = new Dictionary<string, string>() {
{"user_id", "gamer123"},
{"level": 2},
{"total_points": 17500}};
Tealium.TrackView("level_completed_screen", data);
Track Event
To track a user’s interaction with a game, such as achievement_unlocked
or level_started
, call the TrackEvent()
method.
Dictionary<string, string> data = new Dictionary<string, string>() {
{"user_id", "gamer123"},
{"level": 2},
{"bonus_points": 1500}};
Tealium.TrackView("level_completed", data);
This page was last updated: January 7, 2023