Hey everyone, I’ve run into a really strange issue with OAuth token refresh under load. Using JMeter 5.6.2 to simulate 50 concurrent agents in US1. After 300 seconds, the /api/v2/authentication/refresh endpoint returns 401 Unauthorized. The initial tokens are valid. Is there a rate limit on token refresh endpoints that I am missing? Here is the payload structure:
{
"grant_type": "refresh_token",
"refresh_token": "abc123xyz"
}
Any insights on capacity limits for auth endpoints?