Hi
I'm trying to get a report via the Google Ads API that returns campaigns and conversions by conversion action last week.
campaign.advertising_channel_type,
segments.week,
customer.currency_code,
metrics.all_conversions,
FROM campaign
WHERE segments.week DURING LAST_WEEK_MON_SUN
'''
Unfortunately, my query above returns a separate row for each campaign with data for the conversion actions separately.
How can I retrieve the aggregate data for the campaign with the conversion number for each conversion type like below?
Campaign Campaign Type Week Currency Conversion Action 1 Conversions. Conversion Action 2 Conversions. Conversion Action 3 Conversions.
Campaign 1 5 2 10
Campaign 2 2 1 12
I can't query the conversion_action view as the campaign field is not supported on that.
Any help would be very much appreciated.