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