Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Universal Analytics clientId vs userId

The docs describe the clientId as:

This anonymously identifies a particular user, device, or browser instance. https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters#cid

It can be used to send server side hits to analytics while still tying them to a particular user.

There is also a feature in closed beta called userId, which you will be able to pass once a user has authenticated: https://developers.google.com/analytics/devguides/collection/analyticsjs/user-id

userId is fairly self-explanatory. However, UA also allows you to pass your own clientid if you choose to. For developing CRM type tools, can one just associate the clientid with a user in the same way that you would with a userid? The goal is primarily to be able to track offline interactions and connect them with visitors in Analytics.

like image 714
maembe Avatar asked Mar 12 '14 13:03

maembe


People also ask

What is client ID in Universal Analytics and Google Analytics 4?

Client ID in Universal Analytics and Google Analytics 4 share the same semantics and serve the same purpose in providing a pseudonymous user identifier. The app equivalent in Google Analytics 4 property is referred to as the App Instance ID.

What is the difference between client ID and user ID?

Client ID is made up of unique random number and the first time stamp (i.e. the time of first visit). For example: 124562358.46738999. User ID is made up of alphanumeric characters.

How do I Find my Client ID in Google Analytics?

You can find the client IDs through the ‘User Explorer’ report (under ‘Audience’) in your GA reporting view. Are client ID and user ID the same thing? In the context of Google Analytics, ‘Client ID’ and ‘ User ID ‘ are not one and the same thing.

What is app Instance ID in Google Analytics?

By default, Google Analytics identifies every user of your website by assigning them a unique ID known as Client ID in UA properties. In GA4 properties, this is referred to as App Instance ID.


2 Answers

This Analytics support page now states the differences between Client ID and User ID - https://support.google.com/analytics/answer/6205850?hl=en#clientid-userid

Essentially client IDs represent unauthenticated users, and are automatically randomly generated.

User IDs represent authenticated users, and must be set manually.

Client-ID vs User-ID screenshot It's worth noting that user IDs cannot be things like an email address, or other data that would allow Google to identify the user

  • You will not upload any data that allows Google to personally identify an individual (such as certain names, Social Security Numbers, email addresses, or any similar data), or data that permanently identifies a particular device (such as a unique device identifier if such an identifier cannot be reset).
  • If you upload any data that allows Google to personally identify an individual, your Google Analytics account can be terminated, and you may lose your Google Analytics data.

Taken from: https://developers.google.com/analytics/devguides/collection/protocol/policy

like image 30
Will Hawker Avatar answered Oct 17 '22 06:10

Will Hawker


maembe,

clientID is a random number generated by Google Analytics, and keep in mind it's always required and its value should always be a random UUID (version 4) (you could technically use your own, but I am not sure how practical and reliable this would be). Most importantly, you can easily access it with predefined get function (see documentation).

For your needs, this is exactly what you should do -- if someone sings ups, store ClientID in your CRM and then if there is any offline purchase, record the transactions with measurement protocol using the stored clientID. Google Analytics will then make the link (attribution) with that visitor and you will see this in your reports. Also, take advantage of newly available custom metrics and dimensions which can store pretty much anything you want (think of customer segmentation etc.). Beware of storing PII though.

Hope this helps :)

I am curious how UserID is going to work, it might change everything, but for now, I wouldn't rely on it as there is very little information available.

like image 68
Petr Havlik Avatar answered Oct 17 '22 06:10

Petr Havlik