I am working on making my webhook processor idempotent by storing event tokens with a TTL. Is the retry period of 12 days related to the possibility of receiving a duplicate webhook notification? In other words, can I assume that i will only ever nee...
Will the notification payload from an event ever include multiple types of events? For example, can it be {"transactions" [...], "usertransitions":[...]} or will it always be only a single batch of a single event type?
Hi @reneemq it also seems as if sandbox webhooks are down. This has been the case since yesterday. I have been receiving Service unavailable responses when attempting to create a webhook.
Hi @reneemq , According to your documentation there is a concern for possibly receiving duplicate events. In order to mitigate this is I am storing the tokens of events i have successfully processed in a DynamoDb table so that if i am sent an event ...