Hi ,
Thank you for explanation, I understood. I need one more information about JSON output, when we fetch data using using JSON, we get response, in that response, in rows arrays, in “value” variable either its mention date
or market channel name (if we use market channel breakdown). So can we get both date and channel name in output response then we can easily find out , data is belongs to which market channel and on which date.
For each row returned by the API, you will have the Date, and data for each column:
"rows": [
{
"itemId": "1234567",
"value": "Dec 1, 2023",
"data": [
23455,
3435,
7568,
68678,
5675,
567,
765
]
},
....
The Date is obvious (Dec 1st, 2023 in this example), and each data in the array corresponds to each column...
In my example, I have 7 columns, 7 data values are returned... in the order of the columns.. So if your column 1 is "Organic Search", then you know that 23455 belongs to that channel, and column 2 "Page Search" corresponds to 3435, etc....
The columns/data will always be returned in the order specified by your request columns.