Can’t quite understand why the Genesys Cloud Quality Management API returns a 400 Bad Request when attempting to create a custom survey question via POST /api/v2/quality/surveys. The payload structure seems correct based on the Swagger docs, yet the response body indicates a validation failure on the question_text field, citing an unsupported character encoding issue.
In our previous Zendesk environment, we simply injected custom fields into the ticket metadata, and the satisfaction widget handled the rendering seamlessly. The migration guide suggests mapping these directly to GC surveys, but the strictness of the Genesys schema is catching us off guard. We are using the standard v2 SDK for Python, version 1.5.2, and have verified that the UTF-8 encoding is applied before the request is sent.
Is there a specific character limit or regex pattern enforced on survey questions that differs from the UI behavior? The documentation is sparse on edge cases for special characters in French, such as accents or ligatures, which are common in our support transcripts. Any insights on how to sanitize this input before the API call would be appreciated.