Daily breakdowns with AWQL

64 views
Skip to first unread message

Olof Nilsson

unread,
Jan 19, 2016, 8:59:13 AM1/19/16
to AdWords API Forum
Hi!

I'm using the AdWords API to pull performance data from the Budget Performance Report in python:    

# Create report query.
report_query = ('SELECT AssociatedCampaignName, ConvertedClicks, Cost '
                    'FROM BUDGET_PERFORMANCE_REPORT '
                    'WHERE Cost > 0 '
                    'DURING {START}, {END}')

I've tried to find information as to wether there is any way to get this with a daily breakdown (one row per date) instead of aggregated over the whole period {START} -> {END}?
If not, is this possible using any other of the performance reports?

/Olof

Yin Niu

unread,
Jan 19, 2016, 12:58:51 PM1/19/16
to AdWords API Forum
Hello, 

You won't be able to get daily breakdown using Budget Performance Report. You might want to take a look at Campaign performance report which has BudgetId field. 

Thanks,
Yin, AdWords API Team. 

bastien rabaute

unread,
Jan 22, 2016, 10:53:38 AM1/22/16
to AdWords API Forum
Hi Olof,

This query works for me. Similar to what you need I hope.

select
Date, CampaignName, ConvertedClicks, Cost
from CAMPAIGN_PERFORMANCE_REPORT
WHERE Cost > 0
during 20150101,20150201

Bastien

Try AWQL.me for your AWQL queries. It's free !
Reply all
Reply to author
Forward
0 new messages