Seeing duplicate events from EventBridge hitting our CXone webhook endpoint. The source is an AWS SQS trigger. The idempotency key isn’t helping because the payload hash changes slightly on retries. Is there a server-side deduplication strategy in the REST Proxy ? Or do I need to handle this in the consumer code? Here’s the payload structure:
{ "detail-type": "OrderCreated", "id": "abc-123" }
Tried caching the ID locally but it’s not reliable.