Hi, Please be informed that I have removed your response from the forums as it contains the PII information.
It is not possible to retrieve data from those two campaigns in an aggregated, grouped, or summed format by day, as shown in the Looker report you shared. When using the campaign report, we apply filters on both the date and campaign name in the 'WHERE' clause. As a result, the data is retrieved separately for each campaign and segmented by date. Therefore, you cannot obtain a report that combines both campaigns' data while keeping it segmented by date. However, we were able to retrieve the data as per your screenshot from the Google Ads API using the campaign resource which will retrieve the results separately for each campaign. However, I am sharing with you the sample GAQL query: SELECT campaign.name, metrics.impressions, metrics.ctr, segments.date, campaign.resource_name FROM campaign WHERE campaign.name LIKE '%DESTINO%' AND segments.date BETWEEN '2025-03-01' AND '2025-03-11' Note that this query will fetch both the campaigns data individually which are segmented by date. Thanks, Google Ads API Team Feedback How was our support today? [2025-03-17 01:41:26Z GMT] This message is in relation to case "ref:!00D1U01174p.!5004Q02vH9Of:ref" (ADR-00294017) -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/adwords-api/PL2hz000000000000000000000000000000000000000000000ST8VD200hQnLm5v3SHC0YBRxij8WWA%40sfdc.net.
