#xxxxx-webhooks

1 messages · Page 1 of 1 (latest)

thin mica
#

if you return a HTTP 200 status when we retry, we'll stop sending it, that's the easiest option!

charred sparrow
#

no as we have updated the database , so we have to just remove that, so that stripe don't send that again.

#

is there any other way through which stripe stop sending event related to a particular payment.

thin mica
#

there is not

#

I'd suggest you just add some logic to your app , you can hardcode the event ID evt_xxx and just have an if-statement to return a 200

#

the only other alternative is to delete the webhook endpoint entirely and create it again, that clears the queue of retries, but then you miss any events we would have sent during the period while it's deleted, so I don't recommend that at all

charred sparrow
#

as this is a test mode i can do that?

thin mica
#

I wouldn't recommend it

#

but it's up to you, those are the options