#Naresh Kumar
1 messages · Page 1 of 1 (latest)
charge.refunded event was triggered and sent to your Webhook endpoints: https://dashboard.stripe.com/test/events/evt_3Mj1on2EjgoXXYg20FwZ489q
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I cannot see this as an event triggered
What is the difference between
- charge.refunded
- charge.refund.updated
https://dashboard.stripe.com/test/webhooks/we_1Kr1Ks2EjgoXXYg29hwBBNoQ is set to Connect endpoint type, so it only listens to charge.refunded event on the connected account.
However, the charge refund is on the platform account itself.
oh got it understood. Thanks for the explanation
What is the difference between
- charge.refunded
- charge.refund.updated
charge.refunded event is for charge that has been refunded. However, in some rare instance that the refunded payment may fail such as bank doesn't process refund correctly some time later, charge.refund.updated event will notify your server.
You may refer to the details here: https://stripe.com/docs/refunds#failed-refunds
One last doubt -
charge.refunded - Is this triggered as soon as the Refund button is clicked on the UI or it has some trigger points.
Another Doubt:
For charge.refunded we can use in the below mentioned accounts right?
- Account side Refund
- Stripe Connect side refund.
But for these two events to handle we have to use two different web-hooks
charge.refunded - Is this triggered as soon as the Refund button is clicked on the UI or it has some trigger points.
There will be checks performed before sendingcharge.refundedbutton
For charge.refunded we can use in the below mentioned accounts right?
- Account side Refund
- Stripe Connect side refund.
But for these two events to handle we have to use two different web-hook?
Yup! You can usecharge.refundedandcharge.refund.updatedto monitor the refunds. You will need two different webhook endpoints for platform itself and connected accounts
okay got it !!