why does this setting in the analytics api request payload trigger a 429 too many requests error when the service now rest api endpoint is configured to accept bulk incident creation via genesys cloud data actions?
we are experiencing intermittent failures in our automated ticket creation flow. the genesys cloud architect flow triggers a data action upon conversation end, sending a json payload to our service now instance. the payload includes conversation metadata, agent id, and a summary of the interaction.
the issue arises when the conversation volume spikes during our peak hours (10:00-12:00 gmt). the analytics api seems to be rate-limiting the data action calls, even though the service now endpoint is configured to handle bulk inserts. the error response from genesys cloud is:
{
"statusCode": 429,
"message": "too many requests",
"retryAfter": 15
}
we have verified that the service now side is not rate-limiting. the issue appears to be within the genesys cloud data action execution layer. we suspect that the payload size or the frequency of the data action calls is triggering the analytics api rate limits.
has anyone encountered similar issues with high-frequency data action calls to service now? we are using the latest version of the genesys cloud platform and service now rest api. the data action is configured with a timeout of 30 seconds and a retry count of 3.
we have tried increasing the retry interval and reducing the payload size, but the issue persists. any insights on how to optimize the data action payload or configure the analytics api to handle higher volumes of requests would be appreciated. we are also considering using a queueing mechanism to buffer the requests, but want to ensure that this does not introduce additional latency to the ticket creation process.