Hi,
From what I understand about the API, each report_type has some field\combination of fields which the data is being aggregated by beside the attributes\segments the user chose.
I was wondering if there is a way to get the field(s) which the report is being aggregated by for each report.
For example:
If I chose to create the report (through the API): `keywords-performance-report` with the fields: `date, impressions` without the `keyword` field I will get data which look like this:
Date, Count
1/1/17, 15
1/1/17.25
Which means that the report is doing some kind of aggregation beside the attributes\segements I chose (which is date), and that the actual report should have been:
Date, Count, keyword
1/1/17, 15, a
1/1/17.25 , b
So for this example, I would like to know that I need to add the field: `keyword` to my requests.
Is there a way to get this info by code or documentation?
Thanks in advance