Hi Team,
Every day, we use the Adwords API to get an adgroup performance report about the day before.
The Issue is we are not receiving the same number of Adgroup from one report to another one. (Sometimes we got 145 adgroups, Other times we got only 100, or 22)
Here is the request we make :
->from(ReportDefinitionReportType::ADGROUP_PERFORMANCE_REPORT) // ->where('Status')->in(['ENABLED', 'PAUSED'])
->duringDateRange(ReportDefinitionDateRangeType::YESTERDAY)
->build();
And, here is the columns we ask for :
$query = (new ReportQueryBuilder()) ->select([
'CampaignId',
'AdGroupId',
'Impressions',
'AllConversions',
'Clicks',
'Cost',
])
What could be the cause of the difference of the number of adgroups between reports ?
Thanks