Magento – Refund online with paypal

creditmemomagento-1.8paypalrefund

Is it possible to do online refund with paypal in magento communtiy. if yes, which paypal api supports this feature in magento and how can i use that?

Best Answer

PayPal Direct and PayPal Express Checkout has this feature, as you can see in the payment models:

protected $_canRefund                   = true;
protected $_canRefundInvoicePartial     = true;

Whereas PayPal Standard doesn't have these settings.

You should be able to use the online refund from the invoice view in the backend.