What is the reason the Genesys Cloud Data Action returns a 400 Bad Request with ‘Invalid JSON payload’ when mapping Zendesk ticket fields?
We are migrating from Zendesk Support using the Zendesk API trigger. The payload works in Postman but fails in the GC Architect flow (v2024-10). The error points to the description field containing unescaped newlines. How do you handle this character encoding difference?
Have you tried wrapping the description in encodeURI before the Data Action? We see this often with Zendesk syncs where description needs encodeURIComponent(body.description) to survive the JSON parse.