Skip to main content

BLIK

To enable the BLIK payment method, you need to use direct integration. When creating a payment, send a request with the following parameters:

ParameterTypeRequiredDescription
pos_idUUIDMerchant's identifier (POS_ID)
modeMODEdirect
methodMETHODPayment method (purchase)
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, FR
customer_cityStringCustomer's city
customer_ipStringCustomer's IP address
properties.instrument_typeStringInstrument type (online_banking)
properties.instrument_methodStringInstrument method (WALLET_BLIK)
browser_fingerprintStringAn object that collects detailed technical browser parameters
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",
"amount": 1,
"method": "purchase",
"currency": "PLN",
"payway": "banking",
"properties": {
"instrument_type": "online_banking",
"instrument_method": "WALLET_BLIK"
},
"customer_lname": "Doe",
"customer_fname": "John",
"customer_email": "example@gmail.com",
"customer_phone": "38000000000",
"customer_country": "FR",
"customer_city": "Warsaw",
"order_3ds_bypass": "supported",
"description": "Test purchase",
"order_id": "1234567890"
}