Hi, I’m using the http node of the latest n8n cloud - and can’t get this to work for the life of me.
When I use 1 dimension in the Google search console API call, it works perfectly, giving me a bunch of rows, but any time I try to use 2 dimensions, it lumps the response all into 1 row of an aggregated response. It doesn’t matter what the dimensions are. anybody could please help trouble shoot it would be greatly appreciated!
URL: https://www.googleapis.com/webmasters/v3/sites/{{site}}/searchAnalytics/query
Ex of query that works:
{
“startDate”: “2025-01-13”,
“endDate”: “2025-01-14”,
“rowLimit”: 25000,
“dimensions”: “page”
}
Ex of query that just lumps it into one response:
{
“startDate”: “2025-01-13”,
“endDate”: “2025-01-14”,
“rowLimit”: 25000,
“dimensions”: [“date”,“page”]
}
ex of the single lumped response:
[
{
“rows”: [
{
“clicks”: 786,
“impressions”: 61692,
“ctr”: 0.012740711923750243,
“position”: 9.291447837645075
}
],
“responseAggregationType”: “byProperty”
}
]