L'Oréal Luxe achieved 57% sales growth for Lancôme's D2C website. How? Read case study to find out
All articles
Articles
How to send Google Client ID to your CRM: a guide for lead generation businesses

How to send Google Client ID to your CRM: a guide for lead generation businesses

In this article learn how to send Google Client ID to your CRM. Based on this ID, you can set up an end-to-end analytics to understand how your marketing activities result in valuable actions throughout the sales cycle and use them as optimisation objectives.
How to send Google Client ID to your CRM: a guide for lead generation businesses Constantine Yurevich
Articles
How to send Google Client ID to your CRM: a guide for lead generation businesses
3 min read

This guide is relevant for lead generation businesses only because e-commerce businesses use Order ID instead of Google Client ID in most cases.

If you are a lead generation business it is quite common that the most important funnel steps like lead qualification, opportunities or sales happen inside your CRM.

While building marketing analytics and evaluating the effectiveness of your marketing it makes total sense to optimise for specific CRM statuses instead of just leads generated on the website.

To achieve this, it is important to prepare your CRM data for stitching with the website data and in this guide, we will try to describe the most common use cases. We will use Salesforce as an example, but the same process applies for HubSpot, Pipedrive, or any other CRM.

Defining identificators

The only way to stitch CRM data with website data is to have some common identificator that will be sent to both: your CRM and Google BigQuery.

This can be:

  • Cookie (for example, Google Client ID)
  • Email SHA256 hash
  • Phone SHA256 hash
  • User ID (not always available)
  • etc

We suggest using as many identificators as possible. So that if one ID is not available - another can be used instead. But in many cases.

Lead forms

The most common way to generate leads on a website are lead forms. Once the lead form is submitted it sends an HTTP request to the server alongside with user fields, such as name, phone, email, etc.

While you usually have email, phone, and other user data sent to the CRM - the user cookie is usually missing. The easiest way to send it alongside other data is just to add it as a hidden field. Below you can see an example code of how this can be achieved with Google Client ID.

<form>
  <input type="hidden" name="google_client_id" id="google_client_id" />
</form>
<script type="text/javascript">
ga(function(tracker) {
  var clientId = tracker.get('clientId');
  document.getElementById('google_client_id').value = clientId;
});
</script>

Make sure you create an additional custom field in your CRM to store cookie value (in this case - Google Client ID).

Live chats

Another popular way to collect leads is using live chats, such as:

  • HubSpot
  • Intercom
  • Drift
  • etc

Most of the popular chats have APIs to intercept events for generated leads. You should use these APIs to send your data to the CRM or to update some CRM fields. Below are some examples.

HubSpot Live Chat

<script type="text/javascript">
window.HubSpotConversations.on('contactAssociated', function(payload) {
  // getting Google Client ID
  ga(function(tracker) {
    var clientId = tracker.get('clientId');

    // sending Google Client ID to HubSpot
    var _hsq = window._hsq = window._hsq || [];
    _hsq.push(['identify', {
      google_client_id: clientId
    }]);

    // is required to send some event for the "identify" properties to be sent
    _hsq.push(['trackEvent', {
      id: 'Lead',
    }]);
  });
});
 </script>

Intercom

Create a custom user field inside the Intercom admin panel to store google_client_id.

Update you Intercom initialisation snippet to send google_client_id for all visitors inside the intercom:

<script type="text/javascript">
// getting Google Client ID
ga(function(tracker) {
  var clientId = tracker.get('clientId');

  // intercom settings should be defined only 
  // once Google Client ID is retrieved
  window.intercomSettings = {
    app_id: 'WORKSPACE_ID',
    google_client_id: clientId
  };

  // intercom snippet goes here
})
</script>

This modification guarantees that Google Client ID will be sent to Intercom for each visitor. After that, you can integrate Intercom with your CRM to transfer google_client_id alongside with other fields:

Drift

<script type="text/javascript">
function sendGoogleClientId() {
  ga(function(tracker) {
    var clientId = tracker.get('clientId');
    drift.api.setUserAttributes({
      google_client_id: clientId
    });
  });
}

window.drift.on("emailCapture", function(e) {
  sendGoogleClientId();
});
window.drift.on("phoneCapture", function(data) {
  sendGoogleClientId();
});
</script>

This modification guarantess that Google Client ID will be sent to Drift for each visitor. After that, you can integrate Drift with your CRM to transfer google_client_id alongside with other fields:

Call tracking systems

The last way to generate leads on a website are phone calls. And the only way to stitch phone calls with website data is to use specialised call tracking solutions.

Call tracking works by assigning unique trackable phone numbers to each of the website visitors. These phone numbers capture data from the calls, allowing you to understand how many calls each of your marketing sources is driving and basic demographic information about who each caller is. Most of the call tracking systems also collect cookies, such as Google Client ID and have integrations with the most popular CRM systems.

CallRail

CallRail by default is integrated with Google Analytics and can collect Google Client ID for each phone call. Once collected, the data can be synchronised with your CRM system:

Conclusion

Whichever lead generation method you use, the general rule is to have a unique cookie ID (in our case Google Client ID) for all your leads generated from the website. This way it will be possible to easily stitch your CRM data with online data to build proper end-to-end analytics and attribution.

See SegmentStream in action
Find out the true value of your website traffic sources and boost online ads' performance
Thank you!
We'll contact you soon!

You might also be interested in

More articles

Get started with SegmentStream

Learn about Conversion Modelling and why it is a true next-generation solution to outdated marketing attribution and conversion tracking tools.