How to Send Data to Google Analytics from Multiple Platforms: Get the Technical Details

How to Send Data to GA from Multiple Platforms: Get the Technical Details
Estimated Reading Time: 6 minutes

It’s great that Google Analytics (GA) allows us to track many of our different web platforms, but for a lot of businesses those aren’t the only places where business happens. What if you have sales that happen offline? Perhaps you sell products on Amazon and not on your web property?  Or maybe you sell or have conversions on another site like Etsy or Facebook? Those are great  additional ways to increase revenue and allow for more sale avenues, but they also can decrease the value you get out of your analytics tracking—you have no visibility into whether a user bought something elsewhere. Keeping track of revenue across GA and other platforms where you complete sales can be a lot to juggle. The ideal situation is using one tool to track revenue across all sources, as well as tie in other sales from customers who have been on your web properties thereby saving you a lot of time and remarketing dollars.  

Believe it or not, there are ways to get data from properties which may not be tagged into GA. This will allow you to enrich your GA data and provide a more complete picture into how your web properties are performing. Today I’ll walk you through a technical example of how you might implement this approach using the GA API.

Preparing the data

PriceSpider is a common tool many companies use to enable the sale of their products on other platforms such as Amazon. A widget can be created to place products in various locations and allow the sale through avenues other than your own web property or app. In order to get this data into GA, PriceSpider can dump a file which contains sales data for your widgets. For solutions other than PriceSpider, usually a file dump or an API you can access is required to extract the data.  

When you receive the schema of the API or file, you need to determine which columns contain data you want inside of Google Analytics and which ones might not be data you take action on. Specific to the PriceSpider file drop, there are several extremely important columns which we want to ensure makes it in GA:

  • vci_visitor_id: This contains the google cookie ID so we are able to match users who came from your web property to the user who purchased.
  • currency_code: Contains the currency code so we know the currency of the purchase amount.
  • referrer_url: This can be very helpful as it may provide a lot of insight into where the customer came from before completing the purchase.
  • purchase_amount: Why you would want this seems pretty obvious…
  • product_name or product_sku: Either could be used to identify the product purchased, depending on how you set up PriceSpider.

There are many other columns that may be of importance to your business, but we are only going to focus on the key ones above.  

In order to process this file and get the data into GA, each row is its own transaction and will be processed one row at a time. Using Python, we will want to read in each row and separate out the CSV columns.

with open(priceSpider.csv', 'r') as read_obj:
    csv_reader = reader(read_obj)
    for priceSpiderTransaction in csv_reader:

Now that we have each row separated out as an array, we are able to process each column in the transaction data. You may be thinking that we can just send this to GA, but some of the data needs to be transformed or cleaned up; therefore, review each of the important data columns we discussed above and determine the format needed for Google Analytics. From there, we will create the object that will be sent to GA.

# define each column we need to work with
visitorId = priceSpiderTransaction[0]
# currency code is fine as is
currencyCode = priceSpiderTransaction[1]
referrerUrl = priceSpiderTransaction[2]
purchaseAmount = priceSpiderTransaction[3]
productSku = priceSpiderTransaction[4]
productName = priceSpiderTransaction[5]

# visitor ID needs to be separated to only contain the trailing digits
visitorId = visitorId.split('GA1.2.')[1]
# referrer URL needs to have query parameters stripped
referrerUrl = urlparse.urljoin(referrerUrl, urlparse.urlparse(referrerUrl).path)
# need to build out a host URL as well
hostUrl = "https://" + urlparse.urlparse(referrerUrl).hostname
# purchase amount and sku go in a products array
products = []
products.append({'id': productSku, 'name': productName, 'price': purchaseAmount, 'quantity': 1})

# build the measurement to send to Google Analytics
gaObject = {
    "v": 1,
    "tid": 'UA-XXXX', # GA tracking ID,
    "cid": visitorId,
    "ec": "event_bin_action",
    "ea": "event_buy_now_checkout_complete_eretailer",
    "el": 'TEST RETAILER NAME',
    "t": "event",
    "pa": "purchase",
    'dl' : referrerUrl,
    'dh' : hostUrl, 
    "ti": priceSpiderTransaction[6],  # Transaction ID
    "tr": 0,  # Revenue
    "cu": currencyCode,  # Currency Code
    "cd44": "MeasurementProtocol",
    "products": products,
}


The PriceSpider data does not need a lot of transformation or clean-up. Based on the integration you are trying to implement, it may be more complicated or in some cases even simpler. The last step is to send this object to the GA collection endpoint.


requests.post(
    url="https://www.google-analytics.com/collect",
    params=gaObject
)


Once you receive a response from that POST request, be sure to check for the measurement inside of the GA interface.  

If that verification is successful, you are well on your way to making GA work better for you!  Whether it is PriceSpider or another data set, pushing custom measurements into GA will help to streamline your business and gain valuable analytic insights.

Need help with your data properties?

We've got a team of engineers at the ready.
Facebook
Twitter
LinkedIn
Email
Last Updated: October 11, 2021

Other Articles You Will Enjoy

What Do Media Companies Need to Know about Google Analytics 4?

What Do Media Companies Need to Know about Google Analytics 4?

So we all know that Google Analytics 4 is coming and coming fast. And we know if you use Google Analytics that you will…

6-minute read
Google Analytics 4 Reports: Sampling, Cardinality, and Thresholding … Oh My! 

Google Analytics 4 Reports: Sampling, Cardinality, and Thresholding … Oh My! 

“Do you suppose we’ll meet any wild animals?” Dorothy timidly asked the Tin Man before being startled by the Lion on their trip down…

6-minute read
What Happened to Views and Filters in Google Analytics 4?

What Happened to Views and Filters in Google Analytics 4?

For years, Google Analytics has been known for its simple hierarchy of Account > Property > View. If you took a Google Analytics Academy…

10-minute read
Planning Your Digital Analytics Strategy around 2023 Healthcare Trends

Planning Your Digital Analytics Strategy around 2023 Healthcare Trends

The weather is cooling. Leaves are falling. You see your first Christmas display at your local home goods store. Mariah Carey starts playing on…

5-minute read
How To Fix Multiple Payment Method Issues In Google Analytics

How To Fix Multiple Payment Method Issues In Google Analytics

Most online businesses, including eCommerce, accept payment online using multiple payment methods. These payment methods may include PayPal, card payment, Stripe, etc. This is…

5-minute read
Google Releases A/B Testing Partners to Replace Google Optimize at Sunset

Google Releases A/B Testing Partners to Replace Google Optimize at Sunset

As Google continues on the path towards creating a better overall experience for experiments in Google Analytics 4 (GA4), they recently announced more news…

2-minute read
Overview of Audiences in Google Analytics 4

Overview of Audiences in Google Analytics 4

As a website owner or digital marketer, it’s crucial to understand your website visitors’ behavior to make informed decisions. That’s where audience overview in…

3-minute read
Four A/B Testing Platforms to Consider When Planning for the Sunset of Google Optimize

Four A/B Testing Platforms to Consider When Planning for the Sunset of Google Optimize

Google recently announced that both Google Optimize and the Google Optimize integration with Google Analytics 4 (GA4) will sunset on September 30, 2023. After…

11-minute read
Google Signals in Google Analytics 4 and How It Impacts Your Audience Strategy

Google Signals in Google Analytics 4 and How It Impacts Your Audience Strategy

About Google Signals Google Signals is an analytics feature provided by Google that enables cross-device reporting and remarketing. Integrated with Google Analytics, Signals helps…

9-minute read

Get Your Assessment

Thank you! We will be in touch with your results soon.
{{ field.placeholder }}
{{ option.name }}

Talk To Us

Talk To Us

Receive Book Updates

Fill out this form to receive email announcements about Crawl, Walk, Run: Advancing Analytics Maturity with Google Marketing Platform. This includes pre-sale dates, official publishing dates, and more.

Search InfoTrust

Leave Us A Review

Leave a review and let us know how we’re doing. Only actual clients, please.