Skip to main content

Payouts via online banking in Europe

Payouts via online banking in Europe are processed through direct credit requests.

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (credit)
amountNumberTransaction amount. Must be a positive number
currencyCURRENCYTransaction currency (ISO_4217)
order_3ds_bypassString3-D Secure flow option
order_idStringUnique identifier of order
descriptionStringPayment description
paywayStringbanking
customer_fnameStringCustomer's first name
customer_lnameStringCustomer's last name
customer_emailStringCustomer's email
customer_phoneStringCustomer's phone
customer_countryStringCustomer's country (ISO 3166-1 alpha-2). For instance, PL for Poland
customer_cityStringCustomer's city
properties.instrument_typeStringInstrument type (bank_transfer)
properties.instrument_methodStringInstrument method alias (BANK_EUR)
properties.bank_nameStringCustomer's regional bank name
properties.branch_codeStringCustomer's bank branch code
properties.account_numberStringCustomer's bank account number
properties.addressStringCustomer's address
properties.post_codeStringCustomer's post code
server_urlURLWebhook notification will be sent to this URL
result_urlURLCustomer will be redirected to this URL after payment

Request example:

{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"method": "credit",
"amount": 1,
"currency": "EUR",
"customer_fname": "Jane",
"customer_lname": "Doe",
"customer_phone": "447911123000",
"customer_email": "mail@mail.net",
"customer_city": "Warsaw",
"customer_country": "PL",
"payway": "banking",
"properties": {
"instrument_type": "bank_transfer",
"instrument_method": "BANK_EUR",
"branch_code": "9999999",
"account_number": "EU000000000000000",
"bank_name": "0000 TEST",
"address": "Test,567,Ap.No:88",
"post_code": "555555"
},
"order_id": "1234567890",
"description": "test credit",
"order_3ds_bypass": "supported",
"server_url": "http://callback-stub:9000/consume"
}