POST /api/v2/analytics/conversations/details/query returns 429 Too Many Requests. We are pushing 200 concurrent threads via JMeter to test bot capacity. how to bypass rate limits for load testing?
You should probably look at at the request payload structure. The analytics endpoint is strict about formatting. Ensure your query object is correctly nested.
{
"query": {
"filter": "type:bot",
"aggregates": ["count"]
}
}
Verify the query key exists.