Can’t get this config to load properly… The bulk import process for Quality Management forms fails consistently when simulating high concurrency via JMeter. We are testing the scalability of the WFM integration pipeline. The goal is to push 200 concurrent requests to update form definitions before the next shift starts. The environment details are as follows:
- Genesys Cloud Org ID: [Redacted]
- JMeter Version: 5.6.2
- SDK: Python 3.9 (genesyscloud-python)
- Endpoint: POST /api/v2/wfm/schedules/groups
- Error: 429 Too Many Requests
- Rate Limit Header: X-RateLimit-Remaining: 0
The initial requests succeed, but after approximately 50 concurrent threads, the API returns 429 errors. The retry logic in our script hits the max attempts and fails. We are not seeing this issue with lower concurrency (under 20 threads). Is there a specific burst limit for WFM schedule group updates? The documentation mentions standard rate limits but does not specify if WFM endpoints have stricter throttling for bulk operations. We need to know if we should implement an exponential backoff strategy or if there is a configuration setting in the Admin portal to increase the allowed throughput for these specific API calls. Any insights on the expected capacity for this endpoint would be helpful.