Hello All,
We have implemented Query for conversation aggregates (/api/v2/analytics/conversations/aggregates/query) API in a code to pull all conversation IDs in a given interval. It used to work with below request.
Request Body:
{
"interval": "2020-10-21T00:00:00/2020-10-21T23:00:00",
"timeZone": "America/Chicago",
"groupBy": ["conversationId"]
}
But since last two weeks we haven't received any Conversation IDs. When we checked, the code was throwing error that Metrics are required. Now it is working with below parameters.
Request Body:
{
"interval": "2020-10-21T00:00:00/2020-10-21T23:00:00",
"timeZone": "America/Chicago",
"groupBy": ["conversationId"],
"metrics": ["tIvr"]
}
In API explorer, metrics field is still shown as optional. Could someone help us whether any update has been pushed for this API? Also where to look for this change update?
Thanks