Payouts
Create a payout
Send money to your customers.
post/payouts
Request body
Example request
{
"psp": "Checkout.com",
"amount": 1234,
"currencyCode": "GBP",
"recipient": {
"title": "Mrs",
"firstName": "John",
"lastName": "Smith",
"ipAddress": "123.100.100.200",
"customerId": "Customer001",
"documentIssuer": "GB",
"documentId": "ABC-123456",
"documentType": "DNI",
"email": "john.smith@example.com",
"gender": "male",
"dateOfBirth": "2024-02-24",
"address": {
"buildingNumberOrName": "10a",
"address1": "Flat 1",
"address2": "Victoria House",
"address3": "15 Apple Street",
"town": "Edinburgh",
"county": "Lothian",
"postcode": "BH23 6AA",
"country": "GB",
"countrySubdivisionCode": "WY"
},
"phoneNumber": "+44 123 1110000"
},
"paymentInstrument": {
"bankDetails": {
"bankDetailsFormat": "GB",
"iban": "GB32CLRB04066800012315",
"swiftBic": "HBUKGB4B",
"bankName": "A Bank"
}
},
"reference": "abc123",
"purpose": "leisure",
"customerId": "Customer001",
"cashierId": "90e7aff7-7e57-459a-a46e-9258c8abc99b",
"merchantTransactionId": "yourUniqueRequestId",
"customMetadata": {
"accountAge": "2",
"transactionType": "Other"
}
}Response
Payout request completed successfully.
Example response
{
"code": "1000",
"id": "a7f45953-1e8b-4f33-87b0-3293f4f6972f",
"paymentId": "57f7f444-29ce-4230-8c7f-1c1fd85c8bc9",
"psp": {
"name": "Checkout.com",
"transactionId": "6418da68-0b3d-4409-ab14-1ceb752b0b1f",
"switchAccountId": "switch-account-123",
"provisionedUserId": "Vx0H4pdAtPCz",
"additionalInfo": {
"customerFirstName": "John",
"customerLastName": "Smith",
"customerDateOfBirth": "2000-01-01",
"customerIpAddress": "123.100.100.200",
"customerId": "de5d7b4a-9410-40e1-85fd-8ceee23c9fd0",
"paysafecardCustomerId": "151743187547"
},
"rawPspResponses": [
{
"httpStatusCode": 200,
"pspName": "Checkout.com",
"headers": {
"content-type": [
"application/json"
]
}
}
]
},
"actionRequired": true,
"merchantTransactionId": "yourUniqueRequestId",
"riskAssessments": {
"merchant": {
"decision": "APPROVED",
"retryable": true,
"rawResponse": {
"httpStatusCode": 200
}
}
},
"paymentInstrument": {
"account": {
"accountId": "customer@email.com"
}
},
"amount": 1234,
"currencyCode": "GBP"
}