I am using Google Console Search API to extract the search Analytics data. I am using query() method for retrieving data.
Parameters:
startDate: '2017-05-10'
endDate: '2017-05-10'
dimensions: ['date','query','page','country','device']
aggregationType: byPage
rowLimit: 1000
startRow: 0.
It should give me 1000 records, right? But I am getting less no of records(853). what could be the reason?
While reading the documentation I have come across that when we use date in dimension group and if we don't have data for that day then the row is excluded from result set. Is this the reason?
Any help would be appreciated. Thanks