Hi everyone,

I'd like to get a report which could show Proximity and Location 
performance ordered by campaign.

I read the documentation on Adwords API, and I found this here 
<https://developers.google.com/adwords/api/docs/guides/location-targeting#reporting>
:

Geo performance reporting 
>
> You can analyze the effectiveness of geo targeting in your campaigns by 
> running reports. The AdWords API provides you two report types to get geo 
> performance data:
>
>    1. You can use the geo performance report 
>    <https://developers.google.com/adwords/api/docs/appendix/reports#geo>. 
>    2. *You can use the criteria report, and filter by 
>    CriteriaType=LOCATION or PROXIMITY to get geo performance data for a 
>    particular geo target.*
>
>
The 2nd point is exactly what I am looking for.

In Adwords UI, I picked a campaign where I have many Locations and 
Proximities criterion with a report on the last 7 days.

Then, I downloaded the report through the Adwords API (v201601, with a 
dotnet c# client) using this ReportDefinition object (I changed the 
campaign Id):

            ReportDefinition definition = new ReportDefinition()
>             {
>                 reportType = ReportDefinitionReportType.
> *CRITERIA_PERFORMANCE_REPORT*,
>                 downloadFormat = DownloadFormat.CSVFOREXCEL,
>                 dateRangeType = ReportDefinitionDateRangeType.
> *LAST_7_DAYS*,
>                 selector = new Selector()
>                 {
>                     predicates = new Predicate[] { Predicate.Equals("
> *CampaignId*", *00000000000*) },
>                     fields = new string[] { "Id", "*CriteriaType*", 
> "Criteria", "CampaignId", "CampaignName", "AdGroupId", "AdGroupName", 
> "LabelIds", "Labels", "DisplayName" },
>                 },
>                 includeZeroImpressions = true
>             };

 

            definition.reportName = definition.reportType.ToString() + " " 
> + definition.dateRangeType.ToString();


In the downloaded criteria report, in the column "CriteriaType", I have 0 
row corresponding to a "Proximity" or "Location" whereas I'm using the same 
settings on UI and the API.

Can't understand why it's not working. Am I doing something wrong?

Could you try to reproduce this issue?

Thanks for your help.

Regards,

Charles.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9c493dc2-4d22-491a-a8ad-f8057d99faa1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to