{ "error": "INVALID_GRANULARITY", "message": "The specified interval size exceeds the maximum allowed for this query type." }
I’m getting hit with this 400 every time i try to spin up a custom interval report via /api/v2/analytics/conversations/aggregates. The docs claim 15-minute buckets are fine, but the server keeps choking on the payload even though i’ve validated the schema locally. here’s the exact json i’m posting:
{
"dateFrom": "2023-10-01T00:00:00.000Z",
"dateTo": "2023-10-01T23:59:59.999Z",
"intervalSize": "15 minutes",
"groupBy": ["conversationId"],
"metrics": ["conversationCount"]
}
it just rejects the intervalSize string outright.