Stripe: Handle SEPA payment disputes through webhook

72 Views Asked by At

Im trying to implement in my rails app a way to handle disputes of SEPA payments through Stripe.

My original plan was to handle 'charge.dispute.created' stripe event through the webhook but it seems like Stripe doesnt send a webhook for this event.

Is there any alternative way to handle disputes through webhook?

1

There are 1 best solutions below

0
Retrospec On

For future reference. You need to enable which webhooks will be fired along with the events per webhook endpoint.

Developers > Webhooks > Click on the Webhook Endpoint > 3 dots menu on the upper right side -> Update details...

And from the modal popup we select the event we want to send the webhook.