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

Viewed 2063

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?

1 Answers

Great question. And yes, your aim to use Measurement Protocol is a very good solution here.

  1. DO NOT hardcode the client id. It's gonna be a hellish mess. Don't.
  2. 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. 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 a 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 oftenly means the user is using an add 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. I suggest sending something like "AnonymousUser." 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.
  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.

Related