What Is a Google Ads Conversion ID — and Why Should You Care?
Last month a project-management SaaS client asked me to investigate why their Google Ads campaigns showed zero conversions despite a steady flow of demo requests. The Google tag was on the site. The conversion action existed in the account. Everything looked fine — until I opened the tag and found the wrong number in the send_to field.
They had pasted their ten-digit Google Ads customer ID (the xxx-xxx-xxxx number in the top-right corner of the interface) instead of the conversion ID. Different number, completely different purpose. Every click was tracked; not a single conversion was recorded. Three months of spend, no data.
A google ads conversion ID is the account-level identifier that links your website's conversion tags back to the correct Ads account. It follows the AW- prefix — for example AW-123456789. Every conversion action in the same account shares that same google ads conversion tracking ID; what distinguishes one action from another is the conversion label, a unique alphanumeric string appended after a slash (e.g., AW-123456789/AbC1dEfGhI). Together, the conversion ID and label tell the Google tag exactly which account and which action should get credit when someone converts.
If either piece is wrong, tracking breaks silently. No error in the UI. No warning email. Just a "No recent conversions" status that most teams shrug off for weeks.
Where to Find Your Google Ads Conversion ID
The most common question I get from new clients is where to find the conversion ID in Google Ads. It is straightforward once you know where to look, but the value is not displayed on any dashboard by default — you have to dig into the tag setup screen.
Step-by-Step: Finding the Google Ads Conversion Tracking ID
- Sign in to Google Ads.
- Click the Goals icon in the left sidebar.
- Open Conversions → Summary.
- Click the conversion action you want the ID for (e.g., "Purchase" or "Lead form submit").
- Scroll to Tag setup and select Use Google Tag Manager.
- Two values appear: Conversion ID and Conversion Label. Copy both.
The official Google documentation walks through the same flow. If you use the Google tag (gtag.js) instead of GTM, you will find both values in the event snippet Google generates for you.
MCC / Manager Accounts
If you run a manager account (MCC), you can set up cross-account conversion tracking so that a single google ads conversion ID tracks actions across multiple child accounts. In that case, the conversion ID belongs to the manager account, not the individual child. This is useful for agencies, but it causes confusion: if a child account later disconnects from the MCC, that conversion ID stops working and a new, account-level conversion must be created.
Conversion ID vs. Customer ID vs. Conversion Label
I see these mixed up constantly. Here is the difference at a glance:
| Identifier | Format | Scope | Where you find it |
|---|---|---|---|
| Customer ID | xxx-xxx-xxxx (10 digits) | Account management | Top-right of the Google Ads UI (docs) |
| Conversion ID | AW-XXXXXXXXX | All conversions in one account | Goals → Conversions → Tag setup |
| Conversion Label | Alphanumeric string after / | One specific conversion action | Same screen as Conversion ID |
Pasting the customer ID where the conversion ID belongs is the single most common copy-paste error I encounter in audits. When someone asks me to locate a conversion ID in Google Ads, I always double-check they are not looking at the customer ID instead. It produces no JavaScript error — the tag fires, the network request leaves the browser — but Google has no matching conversion action on the other end, so nothing records.
For a deeper dive on how the label works and what goes wrong when it is missing, see Google Ads Conversion Label: Find It, Fix It.
How the Google Ads Conversion Tracking ID Actually Works
When a user clicks your ad, Google appends a gclid parameter to the landing-page URL. The Conversion Linker tag (or the Google tag itself) reads that parameter and stores it in a first-party cookie called _gcl_aw on your domain.
Later, when the user completes a conversion, the conversion tag fires and sends the stored gclid along with the google ads conversion ID and label to Google's servers. Google matches the click to the conversion. No _gcl_aw cookie, no match — even if the conversion ID in Google Ads is perfectly correct.
This matters because the cookie is set via JavaScript, which means Safari's Intelligent Tracking Prevention (ITP) caps its lifetime at seven days. If your sales cycle is longer than a week — and for most B2B companies it is — Safari users who convert after day seven will not be attributed. Moving to server-side tracking lets you set the _gcl_aw cookie via an HTTP response header, which is not subject to the same cap and can persist for up to 400 days.
Five Reasons Your Google Ads Conversion ID Breaks Tracking
Finding your conversion ID is easy. Keeping it working is the hard part. These are the five failures I see most often.
1. Wrong ID Pasted into the Tag
Already covered, but worth repeating: the customer ID is not the conversion ID. Always confirm the value starts with AW-. I recently audited a DTC e-commerce brand that had rebuilt its GTM container during a site migration and accidentally pasted the manager-account conversion ID into a child account's tag. Smart Shopping was optimizing against a ghost. We caught it within a day, but the campaign had already spent two weeks bidding on modeled data with no real conversions behind it.
2. Missing Conversion Linker Tag
If you use Google Tag Manager and forget to add a Conversion Linker tag — or restrict it to fire only on certain pages — the _gcl_aw cookie never gets set. Your google ads conversion ID is correct, the label is correct, but there is no gclid to stitch the click to the conversion. The tag fires, Google sees the hit, but it cannot attribute it. For a checklist on common GTM misconfigurations like this, see Google Tag Manager Checker: Tools and a Debug Checklist.
3. Consent Mode Blocking the Tag
Under Consent Mode v2, if a user declines marketing cookies the conversion tag either does not fire or fires in "cookieless" mode with reduced data. That is by design, but many implementations misconfigure the default consent state — setting it to denied globally even in regions where prior consent is not legally required — and lose a significant share of conversions overnight. Google states that Consent Mode's conversion modeling recovers more than 70% of lost ad-click-to-conversion journeys on average, but that recovery depends on having enough observed data and a correctly configured setup. A misconfigured default state can negate the benefit entirely. If you are implementing Consent Mode, walk through the implementation guide step by step.
4. ID Mismatch After Account Migration
Agencies hand off accounts. Companies merge Ads accounts. Somebody creates a brand-new conversion action in the new account but forgets to update the google ads conversion tracking ID in the tag. The old ID keeps firing into an account nobody monitors. I have seen this go unnoticed for over six months.
5. Duplicate Conversion Tags
Two tags with the same conversion ID and label fire on the same page — one from a hardcoded gtag snippet in the site header, another from GTM. Google deduplicates some of these, but not reliably across different tagging methods. The result is inflated conversion counts, which poisons your bidding strategy and makes your CPA look artificially low.
The complete conversion tracking setup guide covers each of these scenarios in more detail and includes a verification workflow.
How to Verify Your Google Ads Conversion ID Is Working
You do not need to wait for real conversions to confirm the tag fires correctly. Here is a quick verification routine I run on every audit.
GTM Preview Mode + Google Ads Tag Assistant
- Open Tag Assistant and connect it to your site.
- In GTM, enter Preview mode.
- Trigger the conversion (submit a form, complete a test purchase).
- In the Tag Assistant panel, look for the
conversionevent. Click it and confirm thesend_tovalue matches theAW-XXXXXXXXX/LABELfrom your Google Ads account. - Back in Google Ads, navigate to Goals → Conversions → Summary. Within a few hours the status should move from "Unverified" to "Recording conversions."
Network Tab Check
Open Chrome DevTools, go to the Network tab, and filter for google or ads. Trigger the conversion and look for a request to www.googleadservices.com/pagead/conversion/. The path will contain your google ads conversion ID. If you see the wrong number there, your tag is misconfigured — no matter what GTM preview shows.
What If It Still Does Not Record?
If the tag fires with the correct google ads conversion ID and label but Google Ads still shows no conversions, the issue is almost always the cookie. Either the Conversion Linker is missing, or a consent tool is stripping the _gcl_aw cookie before the conversion tag reads it, or the user converted on a different device entirely. For cross-device and data-gap scenarios, Enhanced Conversions fills in the blanks by sending hashed first-party data (email, phone) alongside the conversion hit. If you have confirmed every value is correct and the tag still will not record, look at the cookie chain end to end — that is usually where I recommend teams get expert help before wasting another sprint.
When to Go Beyond the Basic Conversion ID Setup
The AW-ID/LABEL pattern covers standard website conversions, but it is only one piece of a larger measurement stack. If you are running lead-gen campaigns and your sales cycle lives in a CRM, you will eventually need offline conversion imports — where you send the gclid and conversion data back to Google from your CRM, bypassing the browser entirely. In that flow, the google ads conversion ID is still relevant (Google needs to know which account to credit), but the data travels server-to-server rather than through a JavaScript tag.
Similarly, if your data layer is incomplete or inconsistent, even a perfectly configured conversion ID will fire at the wrong time or with the wrong value. Measurement starts with clean data infrastructure, not just the right ID in the right field.
If any of this sounds like your situation — conversions not recording, numbers that do not match your CRM, or a setup you inherited and do not fully trust — let me take a look. I will tell you exactly what is broken and how to fix it.
FAQ
Where do I find my Google Ads conversion ID?
Sign in to Google Ads, click Goals, then Conversions, then Summary. Click the conversion action you need the ID for, scroll to Tag setup, and select Use Google Tag Manager. The Conversion ID and Conversion Label are displayed there. The Conversion ID starts with AW- followed by a number and is the same for every conversion action in the account.
Is the conversion ID the same as my Google Ads customer ID?
No. The customer ID is the ten-digit number shown in the top-right corner of the Google Ads interface, formatted as xxx-xxx-xxxx. The conversion ID starts with AW- and is found only in the tag setup screen. Confusing the two is one of the most common reasons conversion tracking fails silently.
Do all conversion actions share the same conversion ID?
Yes. Every conversion action in a single Google Ads account uses the same conversion ID. What makes each action unique is the conversion label, which is an alphanumeric string appended after the ID. If you use a manager account with cross-account conversion tracking, the conversion ID belongs to the manager account and is shared across child accounts.
Why does my conversion tag fire but Google Ads shows zero conversions?
The most common causes are a wrong conversion ID or missing Conversion Linker tag. The Conversion Linker stores the click identifier in a first-party cookie. Without that cookie the tag fires successfully but Google cannot match the conversion to a click. Consent tools that block cookies before the tag reads them produce the same symptom.
Can I use one conversion ID across multiple websites?
Yes, as long as all websites should report conversions into the same Google Ads account. The conversion ID is tied to the account, not the domain. You would use different conversion labels to distinguish actions on each site. For multi-account setups, consider cross-account conversion tracking through a manager account so you only maintain one set of tags.
Not sure your tracking is trustworthy? Get in touch — I will tell you exactly what to fix.