Dispatch an event when a payment is refunded

Created on 16 March 2025, 21 days ago

Im trying to write something for my site that deals with refunded payments. Essentially I need to revoke a product license (custom entity) when a payment is refunded.

I was hoping there was a commerce event that I could subscribe to with an EventListener but there doesn't seem to be, unless I'm overlooking it.

Is that something that could be added?

Feature request
Status

Active

Version

3.0

Component

Developer experience

Created by

🇺🇸United States loze Los Angeles

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @loze
  • 🇮🇱Israel jsacksick

    True that there isn't one, you could detect this via code by implementing an event subscriber reacting to the payment update event.
    Commerce would likely need to do the same if it were to provide one as the refundPayment is handled by the payment gateway plugin.

    Your event subscribe could check that $payment->original->refunded_amount is not equal to $payment->refunded_amount. You could use the field method for that.

    So something like:
    if (!$payment->original->get('refunded_amount')->equals($payment->get('refunded_amount')

Production build 0.71.5 2024