Payouts via online banking in Europe
Payouts via online banking in Europe are processed through direct credit requests.
| Parameter | Type | Required | Description |
|---|---|---|---|
pos_id | UUID | ✅ | Merchant's identifier (POS_ID) |
mode | MODE | ✅ | direct |
method | METHOD | ✅ | Payment method (credit) |
amount | Number | ✅ | Transaction amount. Must be a positive number |
currency | CURRENCY | ✅ | Transaction currency (ISO_4217) |
order_3ds_bypass | String | ✅ | 3-D Secure flow option |
order_id | String | ✅ | Unique identifier of order |
description | String | ✅ | Payment description |
payway | String | ✅ | banking |
customer_fname | String | ✅ | Customer's first name |
customer_lname | String | ✅ | Customer's last name |
customer_email | String | ✅ | Customer's email |
customer_phone | String | ✅ | Customer's phone |
customer_country | String | ✅ | Customer's country (ISO 3166-1 alpha-2). For instance, PL for Poland |
customer_city | String | ✅ | Customer's city |
properties.instrument_type | String | ✅ | Instrument type (bank_transfer) |
properties.instrument_method | String | ✅ | Instrument method alias (BANK_EUR) |
properties.bank_name | String | ✅ | Customer's regional bank name |
properties.branch_code | String | ✅ | Customer's bank branch code |
properties.account_number | String | ✅ | Customer's bank account number |
properties.address | String | ✅ | Customer's address |
properties.post_code | String | ✅ | Customer's post code |
server_url | URL | Webhook notification will be sent to this URL | |
result_url | URL | Customer 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"
}