Hello,
In the old AdWords api we are using the CAMPAIGN_PERFORMANCE_REPORT to fetch the stats of the campaign based on the date range. Below is the query we were executing.
query = "SELECT CampaignId, Clicks, Impressions, Ctr, AverageCpc, Cost, Conversions, CostPerConversion " +
"FROM CAMPAIGN_PERFORMANCE_REPORT " +
"WHERE Impressions > 0 " +
"DURING " + startDate + ", " + endDate;
I am not able to figure out what is the alternative of "CAMPAIGN_PERFORMANCE_REPORT" in the new api.
Could you please guide me how can I migrate the above report to the new API format. Any related documentation on how to do it will be really helpful.
Thanks,
Bikram.