#edutomesco
1 messages · Page 1 of 1 (latest)
Hello, can you tell me more about what is looping here?
Are you not responding with a 200 and the webhook is getting sent over and over?
yes
but I want to know if there is any way to invalidate a webhook for some users
Because each time it pass the test create the customer and then deletes and it's sending this webhook all time
What do you mean by "invalidate a webhook here"?
The expected behavior is to send a 200 back once you have received it successfully, even if you don't do anything with the data. Sending any other response code means that we will retry sending it
If you never want to see this event, you can configure your webhook endpoint to not listen to events of that type. But otherwise always acknowledging the events with a 200 is the way to go
Nice thanks!