Google Ads conversion tracking
Google Ads measures conversions through a Conversion ID + Conversion Label combo (one pair per conversion action). TagEasy fires the conversion tag whenever the matching VisualEvent does — typically a purchase or a lead form submit.
Step 1 — Create a conversion action in Google Ads
- Go to ads.google.com → Tools → Conversions
- + New conversion action → Website
- Enter your domain → Scan
- Choose the category — typically Purchase for ecommerce or Submit lead form for B2B
- Set value (use transaction-specific values for ecommerce)
- Set count: Every for purchases, One for leads
- Click Create and continue
Step 2 — Copy the Conversion ID + Label
After creating the conversion, click See event snippet → the snippet contains a string like:
gtag('event', 'conversion', {
'send_to': 'AW-123456789/AbC-D_efG-h12_34-567',
'value': 1.0,
'currency': 'USD'
});The two parts you need are:
- Conversion ID — the
AW-123456789part (10-12 digits afterAW-) - Conversion Label — the part after the slash (
AbC-D_efG-h12_34-567)
Step 3 — Enter both in TagEasy
During setup:
- Step 4 → check "Track Google Ads conversions"
- Enter Conversion ID and Conversion Label
Or after launch:
- Dashboard → your website → Pixels tab
- Set
googleAdsConversionId+googleAdsConversionLabel
Step 4 — Apply the conversion template
TagEasy ships two Google Ads templates:
conversion— generic conversion fire (good for leads, signups, custom actions)conversion_purchase— purchase fire with transaction value + currency from the dataLayer
Apply whichever match your conversion action's category. You can apply both if you track both purchases and leads — they use distinct Conversion Labels.
Step 5 — Verify in Tag Assistant
- Install the Google Tag Assistant Chrome extension
- Visit your site → click the extension → Connect
- Trigger a conversion (test purchase, test form submit)
- The assistant logs the
conversionevent with the right send_to value
In Google Ads, conversion data appears in the Conversions report with a delay of ~3 hours for new actions. Until then, status will say "Unverified". Don't panic.
Enhanced Conversions (optional)
Enhanced Conversions improve attribution accuracy by sending hashed user data (email, phone, name, address) alongside the conversion. To enable:
- In Google Ads → your conversion action → toggle Turn on enhanced conversions
- Pick the Google tag implementation option
- Push the user data into
dataLayerbefore the conversion fires:
window.dataLayer.push({
event: 'purchase',
enhanced_conversion_data: {
email: 'customer@example.com',
phone_number: '+15551234567'
}
})Google will hash the data client-side before sending. If you collect only email at checkout, that's still helpful — partial data improves match rates.
Multiple conversion actions
You can create multiple conversion actions (e.g., separate purchases vs. signups) — each gets its own Conversion Label. In TagEasy, the current single-input UI tracks the primary purchase action; for additional actions, you can add them as custom GTM tags directly until we add multi-conversion support.
Continue to TikTok Pixel setup or back to pixels overview.