Hitting a 413 Entity Too Large when POSTing a summary query for the last 90 days. The payload size exceeds the limit even with minimal metrics. I’ve tried reducing the group by fields but the date range itself seems to be the bottleneck.
POST /api/v2/analytics/conversations/summary
Need to split the date range in code. Should I chunk it into seven 12-day blocks or stick to daily increments? I’m using Python requests and want to avoid hitting rate limits if I go too granular. Also, does the API support a start/end date filter that automatically handles pagination for large ranges, or do I have to manually manage the offsets?