report_query = (adwords.ReportQueryBuilder() .Select('Date','CampaignName','AdGroupName','Impressions','InteractionRate','TargetCpa','Cost','TrackingUrlTemplate') .From('ADGROUP_PERFORMANCE_REPORT') .Where('CampaignId').In('68060187', '124390347') .Where('AdGroupStatus').In('ENABLED','PAUSED','REMOVED') .During(end_date+ ','+start_date) .Build())Hello Christoph,
Thank you for reaching out. I tried generating the report against your account with the shared report query and was successfully able to generate the results for the two shared campaign ids. Please find below the code snippet of the report query. If you are still having issues, could you please share the complete request and response logs along with the report file generated on your end for me to assist you better?
.fields("CampaignName", "AdGroupName", "AdGroupStatus", "Date", "Impressions", "InteractionRate", "TargetCpa", "Cost", "TrackingUrlTemplate")
.from(ReportDefinitionReportType.ADGROUP_PERFORMANCE_REPORT)
.where("CampaignId").in ("68060187", "124390347")
.where("AdGroupStatus").in("ENABLED","PAUSED","REMOVED")
//where("CampaignId").in("68060187")
.during(new LocalDate("2009-12-11"),new LocalDate("2020-02-07"))
P.S. Please use Reply privately to author option while sharing the details for investigation.
Regards,
Nikisha Patel, Google Ads API Team