Track
Learn about the methods for tracking user activity.
Track Views
To track a screen view pass a TealiumView
object and an optional Dictionary<string, object>
to the Track()
method.
tealium.Track(new TealiumView("screen_view", new Dictionary<string, object> {
{ "screen_name", screenName },
{ "product_id", productIds },
{ "product_name", productNames }
}));
Track Events
To track an event pass a TealiumEvent
object and an optional Dictionary<string, object>
to the Track()
method.
tealium.Track("user_login", new Dictionary<string, object>{
{"user_id", userId}
});
This page was last updated: January 7, 2023