Hi!
I need to understand how the API get the data daily, i ill give some examples:
This is my params request
params = {
'entityId': ENTITY_ID,
'code': 'BRL',
'fromDate': start_date.strftime('%Y%m%d'),
'toDate': end_date.strftime('%Y%m%d'),
'limit': limit,
'offset': offset,
'breakdowns': 'day,widget,doc'
}
My question is, when I use `day` breakdown, am I retrieving the daily metrics value or the current metrics for that `doc_id` and that day?
My main question is whether the data I've already collected will be outdated or immutable.
Do you understand my question?