#Naresh Kumar

1 messages · Page 1 of 1 (latest)

frigid tigerBOT
round pond
true spindle
#

I cannot see this as an event triggered

#

What is the difference between

  1. charge.refunded
  2. charge.refund.updated
round pond
true spindle
#

oh got it understood. Thanks for the explanation

#

What is the difference between

  1. charge.refunded
  2. charge.refund.updated
round pond
#

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

true spindle
#

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?

  1. Account side Refund
  2. Stripe Connect side refund.
    But for these two events to handle we have to use two different web-hooks
round pond
#

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 sending charge.refunded button

For charge.refunded we can use in the below mentioned accounts right?

  1. Account side Refund
  2. Stripe Connect side refund.
    But for these two events to handle we have to use two different web-hook?
    Yup! You can use charge.refunded and charge.refund.updated to monitor the refunds. You will need two different webhook endpoints for platform itself and connected accounts
true spindle
#

okay got it !!

frigid tigerBOT