#Scotty
1 messages · Page 1 of 1 (latest)
Hi, Stripe attempts to send an email to notify you and it specifies when it may be disabled: https://stripe.com/docs/webhooks/best-practices#disable-logic. To prevent this, you'd need fix the misconfigured endpoint by that timeline.
thanks @shrewd python. I have a specific point of failure. If I'm doing testing, I'll create a fake user and go through the stripe payment flow. I'll then delete the user in my database but not delete the user in stripe, so it attempts the webhooks but it errors out because there's no user in my database. Is this an issue you've seen before? Is there a way to not retry webhook attempts?
There is not, can I ask why you'd delete the customer on your database and not on your Stripe account?
The fix here would be to deleted the customer object, https://stripe.com/docs/api/customers/delete as well.
Cool, so if the customer is deleted on stripe it will not resend webhooks?
@shrewd python
I'm unsure without an example, I was taking the details provided as guidance. If you can share a specific event, I can take a look.