Hitting 413 Entity Too Large when querying /api/v2/analytics/users/summary for a 90-day span. Chunking by 14 days works locally but the aggregation logic is messy. Is there a cleaner way to batch these requests without hitting the limit?
start = datetime.now() - timedelta(days=90)
end = datetime.now()
# Loop splits into 14-day chunks, yields 413 on final join