Skip to main content

Payouts via online banking in the United Kingdom

Payouts via online banking in the United Kingdom 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
properties.instrument_typeStringInstrument type (bank_transfer)
properties.instrument_methodStringInstrument method alias (BANK_GBP)
properties.branch_codeStringCustomer's bank branch code
properties.account_numberStringCustomer's bank account number
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": "GBP",
"customer_fname": "Jane",
"customer_lname": "Doe",
"customer_phone": "09000000000",
"customer_email": "mail@mail.net",
"payway": "banking",
"properties": {
"instrument_type": "bank_transfer",
"instrument_method": "BANK_GBP",
"account_number": "35683457934568",
"branch_code": "3456345"
},
"order_id": "1234567890",
"description": "test credit",
"order_3ds_bypass": "supported",
"server_url": "http://callback-stub:9000/consume"
}