Reputation: 1891
I have followed the guidelines described on Measurement Protocol (Google Analytics 4) to send purchase events from server.
I have verified that logging of this event works on GA4. I even see source and medium values that come from Google Click ID (GCLID) from Google Ads for purchase conversion.
I have imported this conversion to Google Ads (waited for about a week).
I have many conversions logged to Google Analytics 4, but on Google Ads conversions page I get No recent conversions
. Let me also add that other conversions from the client are shown, only this from the server.
How can I make it so that events send via Measurement Protocol (Google Analytics 4) API that are shown on GA4 and are show source/medium/campaign values from Google Ads to be shown on Google Ads as conversions?
Perhaps I should change attribution model on Google Ads?
Upvotes: 7
Views: 2180
Reputation: 1
I was struggling with a similar problem. Traffic source attribution works when I started using the session_id measurement protocol. Unfortunately, this is not mentioned in the general documentation, but it is said here https://developers.google.com/analytics/devguides/collection/protocol/ga4/changelog?hl=ru#2022-05-23
Upvotes: 0
Reputation: 8111
There are a few good ways to debug it. And a likely reason for this to happen.
The likely reason for the conversions not getting to Google Ads are issues with GCLID. MP may be butchering it, so Google can't map it to any of the GCLIDs it has recorded on its side. Therefore, it can't productively attribute the conversions you're trying to feed it.
The fact that you see your conversions nicely in GA4, but not in ads only supports the idea of GCLID tracking malfunction. GA4 doesn't attempt to look too deep into GCLID. It's usually satisfied by having that query parameter set to attribute the traffic to paid. Ads, however, need to read into it.
The two good ways to debug it are:
Now, I would do both checks in that order. Looking at conversion network requests is just faster. If I still don't see the difference between the calls (which is truly unlikely), I would start investigating all network requests fired on the front-end conversion tracking that include the gclid. See if maybe it lacks a dedicated call into some of its endpoints, but that's quite unlikely given how Google aims to make conversion tracking as painless as possible. It still gives options to offline conversion tracking.
Do the debugging, see if GCLID is malformed in MP. That would be the most likely issue from how it looks.
There's still a chance that something else is malformed like client ids, session ids and such, but you would likely have noticed that in GA4. Or you will definitely notice that when exploring user sessions in BQ.
Upvotes: 2