iPacket has the ability to send events to GA4 and Tealium analytics tools. Customer interaction with both the iPacket Web Plugin & iPacket VDP can now be tracked this way. The events follow the specification created by the Automotive Standards Council.
đŻWhat is GA4?
Google Analytics 4 (GA4) is a tool from Google that helps websites and apps understand what users are doingâlike what pages they visit, buttons they click, or if they buy something.
Think of it like a smart security camera for your website. It records all the important moves users make so you can analyze and improve their experience.
đŚ What is Tealium?
Tealium is a Tag Management System (TMS). It helps you organize and control all the different tracking tags (like GA4, Facebook Pixel, etc.) without needing a developer to change the website code every time.
Imagine it like a remote control center for tracking tools. You can turn tags on or off, or adjust what data they collectâall in one place.
đ How GA4 + Tealium Track iPacket Button Clicks
Step-by-Step:
User clicks the iPacket button on your website.
Tealium listens for that click.
This could be set up using a Click Event listener inside Tealium iQ (its tag manager interface).
It can identify the iPacket button by:
Button ID or class
Button text (e.g., âView iPacketâ)
Or a specific HTML attribute like data-ipacket="true"
When the button is clicked, Tealium triggers a custom event.
Example: ipacket_click
Along with details like:
Vehicle VIN
Page URL
Vehicle year/make/model
Tealium sends this event to GA4 using a GA4 Event tag.
In GA4, it shows up as a custom event like:
css
CopyEdit
event_name: ipacket_click
event_params: {
vehicle_vin: "123ABC456",
page_location: "https://dealer.com/vehicle/123",
vehicle_make: "Toyota"
You can now use this event in GA4:
As part of conversion tracking
In funnel reports (e.g., how many users clicked iPacket vs. submitted a lead)
Or even trigger remarketing audiences (like âclicked iPacket but didnât convertâ)
â Benefits of Tracking iPacket with GA4 + Tealium
Clear insight into user engagement
No developer help needed once the event is configured in Tealium
Flexible use in marketing tools (Google Ads, Meta, etc.)
Can be enriched with other data (car model, stock type, etc.)
đ§ Pro Tip
If the iPacket button loads in an iframe or is hosted externally, it might require a workaroundâlike:
Using Tealiumâs utag.link() on a custom event
Or coordinating with the iPacket script to emit a JavaScript callback/event that Tealium can detect