Getting adwords usage history using awql

I am creating an application in which users can log in, and we take their data daily, and during the initial authorization we pull the last 365 days of data.

While I can retrieve the data, but it gives me the summary data for the last 365 days, I wanted to know if there are any functions in the adwords api, such as analytics api, in which you can set the size for capturing data for every day 365 days .

$reportQuery = 'SELECT Date, CampaignId, AdGroupId, Id, Impressions, Clicks, Cost, Conversions, CostPerConversion FROM CRITERIA_PERFORMANCE_REPORT DURING 20160101, 20160702';

$reportUtils = new ReportUtils();
$data = $reportUtils->DownloadReportWithAwql($reportQuery, null, $user, "CSV");
+4
source share

All Articles