Check refund eligibility
Refunds are only available when using Volt Connect
Usage
Pass the id of the existing payment in the URL to check whether this payment is eligible for a refund.
More information
Full details on how to request refunds, with full details of notifications you can expect, can be found in our comprehensive integration guides.
Path Parameters
ID of the refund
uuidResponse Body
application/json
curl -X GET "https://connect-api-sandbox.volt.io/payments/93b85f3c-76eb-4316-b1ae-f3370ddc59bc/refund-details"{
"refundAvailable": true,
"remainingDays": 365,
"availableAmount": 12345,
"refundedAmount": 0,
"numberOfRefunds": 0,
"message": null,
"code": null
}New payout request POST
**Payouts are only available when using Volt Connect** This will create a payout request to send funds from your Connect account to a beneficiary. For regulatory purposes, it's a closed-loop payout system, meaning you may only payout funds to a person or organisation you've previously received money from using Volt Connect. ### Usage Pass the details of the payout you'd like to make in the body of the request. ### Approval Payouts don't require approval if you create them using the API. If you need to review payouts before sending, this workflow should take place on your own system before you call this endpoint. ### More information Full details on payouts can be found in our comprehensive integration guides.
New refund request POST
**Refunds are only available when using Volt Connect** ### Usage Pass the **id** of the existing payment in the URL and the amount and reference for the refund in the body of the request. ### Checking eligibility before requesting a refund You can get the eligibility for a refund using GET /payments/{id}/refund-details ### More information Full details on how to use refunds, with details of notifications you can expect, can be found in our comprehensive integration guides.