v201809, python3 api.


I am attempting to get agerange performance data for running campaigns.


I have a report defined as so:

report_query = (
adwords.ReportQueryBuilder()
.Select(
"CampaignId",
"AdGroupId",
"Date",
"Impressions",
"Clicks",
"Cost",
"Ctr",
)
.From("AGE_RANGE_PERFORMANCE_REPORT")
.Where("Status")
.In("ENABLED", "PAUSED")
.During("LAST_7_DAYS")
.Build()
)

This runs fine, but does not give me any age range data. It does return 
records listing data as described in the query.  I'm using 
DownloadReportAsStringWithAwql 
to get the data, and looking at the string, no age data exists.

this query:

report_query = (
adwords.ReportQueryBuilder()
.Select(
"CampaignId",
"AdGroupId",
"Date",
*"AgeRange",*
"Impressions",
"Clicks",
"Cost",
"Ctr",
)
.From("AGE_RANGE_PERFORMANCE_REPORT")
.Where("Status")
.In("ENABLED", "PAUSED")
.During("LAST_7_DAYS")
.Build()
)

This report does not run, citing an illegal field called Age Range.
I'm missing something obvious here. How does one get the actual age range 
data?

Thanks,

---=Laurie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3904b35e-3b47-445e-be42-31ee2dcf966dn%40googlegroups.com.

Reply via email to