Reputation: 6364
I have multiple stripe webhooks called. I can't find a way to enable/disable the webhook other than deleting it.
Is there an option on stripe to enable/disable webhook?
Upvotes: 1
Views: 2714
Reputation: 150
Maybe the existing answer refers to an older version of the Stripe API, but now you can enable/disable webhooks programatically (and probably via the website too)
https://stripe.com/docs/api/webhook_endpoints/update
You set the argument disabled
to either True or False to enable/disable
Upvotes: 2
Reputation: 2447
There is no way to disable any created webhook
But when Stripe couldn't send successfully to an endpoint for several times, then the webhook will automatically be disabled. But this disabled webhook can be enabled from the dashboard.
Upvotes: 0