3

Using ad scheduling on AdWords in my Search Network only campaign I can see 'Hour and day of the week' report. It shows campaign performance values on a given day and time. I would like to utilize this data in AdWords script. Is it possible to access them through AdWordsApp class or AWQL? If so then how can I do it?

Stewart_R
  • 13,764
  • 11
  • 60
  • 106
Jakub Nurski
  • 473
  • 4
  • 18

1 Answers1

3

DayOfWeek and HourOfDay are segments on a CAMPAIGN_PERFORMANCE_REPORT so you can certainly get the same thing using AWQL.

For example:

SELECT CampaignName,CampaignId,Impressions,Clicks,ConvertedClicks,DayOfWeek,HourOfDay
FROM CAMPAIGN_PERFORMANCE_REPORT
DURING LAST_MONTH
Stewart_R
  • 13,764
  • 11
  • 60
  • 106