Posts tagged with conversion-tracking

The situation is quite complicated to me, let's say:

  1. I have 3 product categories.
  2. I only want to track purchases.

However, if you insert the tracking snippet into the thank you page, each product category will trigger the same tag. customers who buy dresses and customers who buy guns may look totally different. so, if you use the same thank you page to track the conversions, the Google Ads AI will have trouble in optimizing your campaigns:

  • A. Dresses sales campaign
  • B. Guns sales campaign

When people buy a dress, the dress conversion and gun conversion will both increase by one, although the transaction amounts are different by default. This shows that the conversion is contaminating with another campaign (the gun sales campaign).

our marketing team is running adwords for our google store ad campaign. they wants to check if an app installation event is triggered when a user clicked on the advertised link or not. (probably like conversion tracking for installation via adwords). is there anyway we can do this?

I am trying to fetch the conversions data from the Google Ads API using the ConversionTrackerService. I have 5 conversions in my Google Ads account (refer to the screenshot) but I am getting only 1 in the response.

Also in the selector object, I have added just 2 fields, Category, and Name, but in the response, I am getting all the fields.

Can someone please guide me on what I am doing wrong?

adwords_client = adwords.AdWordsClient({...}) adwords_client.SetClientCustomerId('xxx-xxx-xxxx') def conversion_tracker_service():     campaign_service = adwords_client.GetService('ConversionTrackerService', version='v201809')     selector = {         'fields': ['Category', 'Name'],         'paging': {             'startIndex': str(0),             'numberResults': str(10)         }     }     page = campaign_service.get(selector)     print(page) conversion_tracker_service() 

Response:

{     'totalNumEntries': 1,     'Page.Type': 'ConversionTrackerPage',     'entries': [         {             'id': 285131182,             'originalConversionTypeId': None,             'name': 'Text Messaging & SMS for Business -- HighLevel (Android) installs',             'status': 'ENABLED',             'category': 'DOWNLOAD',             'googleEventSnippet': None,             'googleGlobalSiteTag': None,             'dataDrivenModelStatus': None,             'conversionTypeOwnerCustomerId': None,             'viewthroughLookbackWindow': 1,             'ctcLookbackWindow': 30,             'countingType': 'ONE_PER_CLICK',             'defaultRevenueValue': 1.0,             'defaultRevenueCurrencyCode': 'USD',             'alwaysUseDefaultRevenueValue': True,             'excludeFromBidding': False,             'attributionModelType': 'LAST_CLICK',             'mostRecentConversionDate': None,             'lastReceivedRequestTime': None,             'ConversionTracker.Type': 'AppConversion',             'appId': 'com.gohighlevel',             'appPlatform': 'ANDROID_MARKET',             'snippet': None,             'appConversionType': 'DOWNLOAD',             'appPostbackUrl': None         }     ] }