#ondej-mirtes_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1365252415296639047
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
I just expect the webhook to be called successfully once. When it's called multiple times, I spam my users with duplicate emails...
Firstly, you need to update your integration and handle duplicates as this is something that could happens with Stripe webhooks
However in your use case
https://dashboard.stripe.com/events/evt_1RFOi1EsLWYRGjLPORcujSfm
The second retry was done manually by you
That's the first one
The first was done manually
But after that succeeded, the 2nd one was resent automatically by Stripe
I understand this might sometimes happen because of a timeout (but actually processed by my server), but this seemed intentional on Stripe part.
But after that succeeded, the 2nd one was resent automatically by Stripe
OK the second one is a retry to the initial failure delivery
Even if you do a manual resend and the response was 2xx, taht won't disable the automatic retry for the previous delivery
But in general, you should update your integration to handle duplicates to be safe.
Yes, thank you!
Welcome!