How Can I see conversions Details in Google Conversion API? - google-ads-api

When I uploaded the conversion to Google ads manager account I cannot see the conversion details, I only see the last conversion date (see the image below), how can I see all conversions details.
See image here

You don't see conversion details. You see conversion metrics in your normal reports. Importing them doesn't show you a list, they're just associated with your campaign/ad group/keyword resources in the UI. So if you upload 1 conversion, it will be associated with all keywords with that gclid.

Related

How to extract conversion results based on different attribution models from the Google Adwords API

I need to extract data from the adwords API to allow me to see the impact of different attribution models on conversion. I'm visualising my adwords data in the Klipfolio tool. My adwords account is set up to use the position based model but I'd also like to show last click conversions. This is essentially the data which is available in the adwords manager interface. I'm making my API calls via the supermetrics tool but can also create them directly in Klipfolio.
I'm not entirely familiar with the adwords query language but it does look like that there is a field for attribution type.
I've got as far as extracting data via this, using the Klipfolio interface:
SELECT
Date,Conversions,ConversionTypeName
FROM CAMPAIGN_PERFORMANCE_REPORT
DURING {date.add(-7).format('yyyyMMdd')},{date.today.format('yyyyMMdd')}
Exactly what I'm looking for is WHERE function where I can specify a different type of attribution model from the current.
I cannot obtain this data from our Google Analytics data as our conversion data from GA is, unfortunately, duplicated. We're using the adword's conversion tags de-duplication functions to get around this issue.
I'd be very grateful if anyone could share an example of how an API request could look with the attribution model field present or, indeed, give some feedback on whether this is even possible.
Hi you can find more information about the CAMPAIGN_PERFORMANCE_REPORT report here
You can find there the WHERE and SELECT fields like this:
SELECT CampaignName, Clicks, Impressions, Cost
FROM CAMPAIGN_PERFORMANCE_REPORT
WHERE Impressions < 10
DURING LAST_30_DAYS'
Usually the reason for the duplications it's the selection of SELECT parameters, but I cannot say this for sure without more information.

How to import offline conversion tracking with GCLID?

I want to import offline sales tracking on the Google AdWords.
I have downloaded the sample CSV template containing the column with the name GCLID.
But I am in the confusion that from where I get the different GCLID actually?
Please help!
In order to import offline conversions into your adwords account:
1. You need to define a conversion in your adwords account.
you need to capture the gclid variable that google will send with each click and record it with each conversion happening on your system (i assume, you are an affiliate and you will have to find a way to forward the gclid to the affiliate tracking url subid). ex: affurl.com?affid=yourid&offerid=9787&aff_sub=gclidvalue
then you need to prepare the excel sheet according to the template provided by adwords
Pay attention to the timezone / timestamps
You need to be very precise as they will reject data that is not suitable
Upload the file
You need to repeat this process every day / week.
there are tools that can automate part of this process, but unfortunately the upload process is manual.
good luck
You have to setup the offline conversion tracking to be able to retrieve the GCLID in your AdWords Account.
See below for more details.
https://support.google.com/adwords/answer/7012522

Trouble Showing Value of SFDC Conversion in AdWords

Screenshots and similar explanation found at my post in the AdWords community help forum
Whereas most, usual AdWords conversions center around an event happening on your site (often via Google Analytics), Google now (as of ~6 months ago, I believe) offers the ability to track conversions that occur in Salesforce, automatically, by looking for specified "Opportunity Stages" on the Opportunity object in Salesforce. Example: When a given lead is qualified, and their stage is updated to reflect that, this now counts as a secondary conversion in AdWords.
Now I have normal conversions which measure how many people have created an account, and I can measure how many of those accounts are actually potential customers. I love this. It's automatic and gives us pretty granular insight.
The workflow is:
Lead clicks on search or display ad
Arrives at landing page, is assigned a GCLID
Ideally the lead signs up and self identifies
Code on our site sends all the lead's self-provided information PLUS their GCLID into our database AND into Salesforce, where the GCLID is retained in a separate field (called GCLID)
When that lead is converted to an opportunity in Salesforce, the GCLID transfers from the individual lead to the Opportunity object for the account
AdWords polls once daily at midnight for any opportunities where the GCLID field is filled out AND they have reached a specified stage (post qualification)
When AdWords polls the SFDC API and a record matches those criteria, it imports that GCLID, the date of creation, and the value (field named "Amount") that is assigned to the lead.
AdWords is supposed to measure that 1) the conversion occurred (which it does) and 2) the VALUE of the conversion that is determined by a field in SFDC.
I'm having trouble with step 8. I can see the AdWords import history and it's detecting the conversion AND the value, but the VALUE is not appearing in any AdWords report of any kind. All values associated with that conversion are 0, though the conversions themselves are registering.
I've now spoken with AdWords support reps directly and have solicited advice from their community forum, no luck. Anyone have any idea of why this might happen?
Per this FAQ, it sounds like AdWords looks for the conversion value in the Opportunity's Expected Review field.

Adwords Api get click data + keywords

Is it possible to use the glcid supplied from Ad words to pull data from the AdWords API?
In particular I would be looking for cost of a click and the keywords used to search for the advert.
Generaly, you can use GCLID in API, for example when importing offline conversions after conversion happened and you somehow saved GCLID. Unfortunately, in Keywords report, passing GCLID parameter as argument is not supported.
Using Gclid for import
Keywords performance report

Obtain analytical data for a specific video within a date range

So after scouring the youtube API, and thinking that this may not be possible, I'll give a last try here.
In a nutshell, I am trying to obtain analytical data from youtube's analytics's API for specific videos for a date range (by day if possible). I've found ways to get the channel data that the video reside in, but I have been unable to find how to ontain the specific video data itself. Assuming it exists in v3 that is.
Anyone had any luck with this kind of task at all? Has this feature been developed for v3 as of yet?
Channel Reports is the API to retrieve video metrics. It can filter by video, by country, by lead (for some fields) and accepts timespan and data aggregation granularity. In brief, Available Reports lists all the valid query parameter combinations.
Individual comments can be retrieved with v2 Data API - together with their dates.

Resources