In my store I need to be able to cancel a customers order and refund them the total amount they paid.
On PayPal checkout the customer is shown the cost of their items and a shipping rate and then the total cost. When I try to issue a full refund via the NVP API it only ever refunds the amount for the items and doesn't include the shipping cost that they paid.
Is there a way to make sure if refunds the absolute total amount?
Originally I passed through just the PayPal transaction ID as it defaults to a full refund automatically,
'TRANSACTIONID' => $paypalTransactionId
but I received the following in the data passed back from the API.
["TOTALREFUNDEDAMOUNT"]=> string(5) "64.40"
The total amount should have been 69.40. (64.00 for the products and 5.00 for the shipping).
I have tried passing through the total amount (AMT) myself but the API complains that the refund needs to be less than or equal to the cost of the products.
'TRANSACTIONID' => $paypalTransactionId,
'AMT' => $totalPrice,
'REFUNDTYPE' => 'Full'
And also tried passing through the shipping amount
'TRANSACTIONID' => $paypalTransactionId,
'SHIPPINGAMT' => $shipping_price,
'REFUNDTYPE' => 'Full'
Neither do the job.
One possible way around this would be to not pass any shipping cost through Paypal when the customer checks out and just mix it in to the cost of the products. But that isn;t going to be an optimal customer experience and feels kinda hacky.
You must be pulling the subtotal out of your system for the refund instead of the grand total. Simple fix, though. If you're doing a full refund just leave the AMT and REFUNDTYPE parameters out of the request. This will default to a full refund. Those are only required if you're doing a partial refund.