Just noticed that the /api/v2/interactions/scripts/agent-script endpoint starts returning 429 Too Many Requests when we push our JMeter script to simulate 50 concurrent agents receiving a script update simultaneously.
We are running Genesys Cloud version 2023-10.15 in the eu-west-1 region. The goal is to validate how the platform handles burst traffic for script assignments during peak shift changes. Our test setup uses a simple loop controller with a concurrency level of 50 threads, each making a GET request to fetch the latest script version for a specific user ID. We are using valid OAuth2 tokens generated via the client credentials flow, so authentication isn’t the bottleneck.
The error starts appearing after roughly 12-15 seconds of steady load. Before that, the response times are healthy, averaging around 200ms. Once the 429s kick in, the retry logic in our JMeter script kicks in, but it seems to just amplify the problem, causing the backend to throttle us further. We haven’t hit the documented hard limit of 600 requests per minute for this endpoint, or at least we don’t think we have based on our counters.
Here is the snippet from the JMeter debug sampler:
Response code: 429
Response message: Too Many Requests
Headers:
x-ratelimit-limit: 600
x-ratelimit-remaining: 0
x-ratelimit-reset: 1698765432
retry-after: 5
Is there a hidden burst limit per organization or per API key that isn’t documented? We are trying to understand if this is a platform protection mechanism we need to work around with exponential backoff in our load generator, or if there is a configuration setting in the Genesys admin console that caps script fetch rates. We want to ensure our load testing methodology accurately reflects real-world agent login storms without hitting artificial walls. Any insight on how to structure the request pacing to stay under the radar while still testing high concurrency would be appreciated.