Marnix.hoh
Marnix.hoh

Reputation: 1912

What should the client_id be when sending events to Google Analytics 4 using the Measurement Protocol?

I am using Google Analytics 4 (GA4) on the client to track a whole bunch of different events. However, there are 2 scenarios that I can't cover client side:

  1. A user completing check out on a payment page hosted by a third-party (Stripe in this case).
  2. A refund that is made by the support team.

These events are handled by the server using webhooks. To me it seems like the most straightforward solution, would be to let the server send the event to GA4 (as opposed to the client sending it). I believe the Measurement Protocol should be used for this.

For each event submitted through the Measurement Protocol a client_id is required. When the client is submitting an event, this is an automatically generated ID which is used to track a particular device.

My question thus is, what should the client_id be when submitting an event server-side?

Should the same client_id perhaps be used for all events, as to recognize the server as one device? I have read some people proposing to use a randomly generated client_id for each event, but this would result in a new user to be recognized for every server-side event...


EDIT: One of the answers proposes to use the client_id, which is part of the request as a cookie. However, for both examples given above, this cookie is not present as the request is made by a third-party webhook and not by the user.

I could of course store the client_id in the DB, but the refund in the second example is given by the support team. And thus conceptually it feels odd to associate that event with the user's client_id as the client_id is just a way to recognize the user's device? I.e. it is not the user's device which triggered the refund event here.

Another refund event example would be when user A makes a purchase with user B and user B refunds this purchase a week later. In this situation, should the client_id be the one of user A or of user B? Again, it feels odd to use a stored client_id here. Because, what if user A is logged in on two devices? Which client_id should be used here then?

Upvotes: 31

Views: 9516

Answers (3)

BNazaruk
BNazaruk

Reputation: 8081

Great question. Yes, your aim to use Measurement Protocol is a proper solution here.

  1. Do not hardcode the client id. It's gonna be a hellish mess in reports. The nature of user-based reporting (which GA is) demands client ids to uniquely identify users. To your best ability.

  2. How to set it then? Sure, here are two essential ways to set it

    2.1 If you do not have access to the GA id in the cookie, don't fret. Use the user id instead. But mind you, GA will join user activity on it, so if you use it, better use it on all platforms involved in your analysis. NOT just in your Measurement Protocol use case. If you're taking the user id route, then just generate the client ids randomly, making them the same format as the normal client ids. It could be potentially useful too to indicate there that they're generated by MP.

    2.2 Alternatively, GA stores the client id in a cookie. You should have convenient and immediate access to it on every client hit to BE. The cookie name is _ga. GA4 appends the measurement id to the cookie name. Here, google's docs on it:

https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage But you can easily find it if you inspect "collect" hits and look at their payloads. There's another cookie named _gid that contains a different value. That would be the unique client id. Set it too if you can, but don't use it for the normal client id. It has a different purpose. Here how the cookie looks here, on stack:

enter image description here

And here it is in Network. You will need it for proper debugging. Mostly to make sure your FE client ids are the same as BE client ids:

enter image description here

  1. Keep an eye on the cases when the cookie is not set. When a cookie is not set, that most frequently means the user is using an ad-blocker. Your analysts will still want to know that the transaction happened even if there's a lack of context about the user. You still can track them properly.

    3.1 The laziest solution would be giving them an "AnonymousUser" client id and then append a random number to that so that it would both indicate that a user is anonymous and still make it possible for GA to separate them.

    3.2 A better solution would be for you to make a fingerprint client id for such users, say, hashing a concatenated string of their useragent+ip+locale+screen resolution, this is up to your analysts to actually work on the definition of a unique user if the google analytics library is unable to do it.

    3.3 Finally, one of the best solutions for you would be generating a client id on your own, keeping GA's format and maybe adding an indicator there that it has been generated on your end just for easier debugging in the Future and setting it as a cookie, using it instead of _ga. Just use a different cookie name so that ad-blockers wouldn't know to block it.

  2. If you want to indicate that a hit was sent through the server, that's a good idea. Use custom dimension for that. Just sync it with your analysts first. Maybe they wouldn't want that, or maybe they would want it in a different dimension.

Now, this is very trivial. There are ways to go much deeper and to improve the quality of data from here. Like gluing the order id, the transaction id, the user id to that, using them to generate client id, do some custom client tracking for the future. But I must say that it's better than what more than 90% of, say, shopify clients have.

Also, GA4 is not good enough for deeper production usage. Many things there are still very rudimentary and lacking. I would suggest concentrating on Universal Analytics and having GA4 as a backup for when Google makes GA4 actually good enough to replace UA. That is, unless you're downloading your data elsewhere and not using GA's interface for analysis.

Upvotes: 16

Martin Zvarík
Martin Zvarík

Reputation: 2469

I actually made a real-life test and it made no difference whether I used client_id as COOKIE "ga" or random string. The only thing that matters is transaction_id and it is being ignored when sent multiple times (only the first transaction is recorded and it doesn't matter what client_id you use).

Upvotes: 0

Deelaka
Deelaka

Reputation: 13693

It seems that this page (Relevant portion in the screenshot below), advices to either send the data along with the client_id or user_id. However fails to address the fact client_id is a mandatory field as stated here.

I believe it is probably safe to assume that randomly generating this field should work. At least it seems to on my end however be warned that I am unsure if this has any impact on attribution.

GA4 Help Page

* In the above image, Device ID refers to client_id

Upvotes: 2

Related Questions