Retrieves a list of refunds that belong to this payment.
refunds found
{ "type": "list", "data": [ { … } ], "count": 0, "_links": { "self": "http://example.com", "next": "http://example.com", "prev": "http://example.com" } }
Creates a Refund object for this Payment.
Creating a refund will refund a certain amount back to the customer. This amount will be deducted from your balance.
You can choose to only refund a part of the total amount. You can do this multiple times, but the total refunded amount can't exceed the payment amount.
Some pay methods require additional information, like IBAN and account holder name, to be supplied.
The amount that will be refunded to the customer. This can be an amount lower than the total amount to do a partial refund. You can't refund more than the total amount of the original payment.
The description of the refund. This will be shown to your customer and will be visible in the dashboard.
Name of the account holder of the account where the refund will be credited. This is a required field for the pay methods 'bancontact' and 'creditcard'. For other pay methods we will use the orginal customer information provided by the pay method to do the refund.
{ "id": "PRRNQH3PCD125Z", "type": "refund", "amount": 1000, "description": "Test Payment", "reason": "", "payment": "PPBLGEE6UG92MS", "currency": "EUR", "state": "refunded", "refunded_at": "2023-06-30T12:44:35Z", "created_at": "2023-06-30T12:40:10Z", "_links": { "self": "https://api.paypro.nl/refunds/PRRNQH3PCD125Z", "payment": "https://api.paypro.nl/payments/PPBLGEE6UG92MS" } }