Germany Beneficiary
Before making a payment to a Germany bank account, you must add the account as a beneficiary. Germany supports two transfer types: BANK (EUR via SEPA) and SWIFT (USD).
Below is a sample request for creating a Germany BANK beneficiary:
curl --location '{{sandboxURL}}/beneficiaries' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{APIKEY}}' \
--data '{
"reference": "<sample-reference>",
"country": "DE",
"currency": "EUR",
"destination": {
"type": "BANK",
"accountName": "Thomas Schneider",
"accountNumber": "DE89370400440532013000",
"remittancePurpose": "FAMILY_SUPPORT",
"beneficiary": {
"type": "INDIVIDUAL",
"country": "DE",
"city": "Berlin",
"postCode": "10117",
"address": "Unter den Linden 10"
},
"sender": {
"type": "INDIVIDUAL",
"accountName": "John Smith",
"country": "US",
"city": "New York",
"address": "123 Main St",
"postCode": "10001",
"dateOfBirth": "1985-03-15",
"countryOfBirth": "US"
}
}
}'The parameters for adding Germany BANK beneficiaries are:
| Parameter | Description | Required |
|---|---|---|
| country | Country of beneficiary payload. Must be DE. | ✅ |
| currency | Currency of transfer. Must be EUR. | ✅ |
| destination.type | Destination type. Must be BANK. | ✅ |
| accountName | Beneficiary account name. | ✅ |
| accountNumber | Beneficiary IBAN (22 chars, no spaces). | ✅ |
| remittancePurpose | Remittance purpose. Must be one of the supported enumerations below. | ✅ |
The remittance purpose for BANK transfers can be any one of the following
values: COMPUTER_SERVICES, FAMILY_SUPPORT, EDUCATION, GIFT_AND_DONATION,
MAINTENANCE_EXPENSES, TRAVEL, CONSTRUCTION_EXPENSES, ADVISORY_FEES,
BUSINESS_INSURANCE, INSURANCE_CLAIMS, EXPORTED_GOODS, SERVICE_CHARGES,
LOAN_PAYMENT, PROPERTY_PURCHASE, PROPERTY_RENTAL, TAX_PAYMENT,
UTILITY_BILLS, PERSONAL_TRANSFER, SALARY_PAYMENT.
Sender Parameters (Business)
| Parameter | Description | Required |
|---|---|---|
| sender[type] | Must be BUSINESS. | ✅ |
| sender[accountName] | Sender account name. | ✅ |
| sender[country] | Sender country. | ✅ |
| sender[city] | Sender city. | ✅ |
| sender[address] | Sender address. | ✅ |
| sender[postCode] | Sender postal code. | ✅ |
| sender[businessRegistrationNumber] | Business registration number. | ✅ |
Sender Parameters (Individual)
| Parameter | Description | Required |
|---|---|---|
| sender[type] | Must be INDIVIDUAL. | ✅ |
| sender[accountName] | Sender account name. | ✅ |
| sender[country] | Sender country. | ✅ |
| sender[city] | Sender city. | ✅ |
| sender[address] | Sender address. | ✅ |
| sender[postCode] | Sender postal code. | ✅ |
| sender[dateOfBirth] | Sender date of birth (YYYY-MM-DD). | ✅ |
| sender[countryOfBirth] | Sender country of birth. | ✅ |
Beneficiary Parameters
| Parameter | Description | Required |
|---|---|---|
| beneficiary[type] | Must be INDIVIDUAL or BUSINESS. | ✅ |
| beneficiary[country] | Beneficiary country. | ✅ |
| beneficiary[city] | Beneficiary city. | ✅ |
| beneficiary[postCode] | Beneficiary postal code. | ✅ |
| beneficiary[address] | Beneficiary address. | ✅ |