Payout list
Payouts are only available when using Volt Connect
This will return a list of all existing payouts.
Usage
The list is paginated by default and can be filtered using the parameters shown in the request section below.
More information
Full details on payouts can be found in our comprehensive integration guides.
Query Parameters
You can request additional pages of information by appending the page parameter to your GET request. Pages start numbering at 1 and are in blocks of 50 records, so to call records 51-100, append page=2 to your request. If you omit the page parameter, we will return you the information on page 1.
11 <= valueIf you want to return more than the default number of records per page, append the parameter items to your GET request. To get the first 100 records, append limit=100 to your request. To get the next 100 records, append page=2&limit=100. If you omit the items parameter, we will return 50 records per page.
501 <= value <= 100Response Body
application/json
curl -X GET "https://connect-api-sandbox.volt.io/payouts"[
{
"id": "efffed42-40f7-4bd2-840d-908aae9a33ad",
"status": "CREATED",
"createdAt": "2019-08-24T14:15:22Z",
"amount": 500,
"currency": "EUR",
"paymentTitle": "Payout123456",
"beneficiary": {
"name": "John Johnson",
"accountNumber": "12345678",
"sortCode": "404452",
"iban": "DK8389009999910135",
"swiftBic": "SXPYDKKKXXX"
},
"sender": {
"sortCode": "404777",
"accountNumber": "8765432",
"iban": "DK8389009999910135",
"swiftBic": "SXPYDKKKXXX"
},
"externalReference": "string"
}
]Payout details GET
**Payouts are only available when using Volt Connect** This will return details of the selected payout, with approval update history. ### Usage Pass the **id** of the payout as part of the URL. ### More information Full details on payouts can be found in our comprehensive integration guides.
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.