MULTIBANKO
To enable the MULTIBANKO payment method, use direct integration.
| Parameter | Type | Required | Description |
|---|---|---|---|
pos_id | UUID | ✅ | Merchant's identifier (POS_ID) |
mode | MODE | ✅ | direct |
method | METHOD | ✅ | Payment method (purchase) |
amount | Number | ✅ | Transaction amount. Must be a positive number. Minimum amount is 5 EUR |
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 | ✅ | multibanko |
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 |
customer_birthday | String | ✅ | Customer's birthday (yyyy-MM-dd) |
customer_ip | String | ✅ | Customer's IP address |
properties.instrument_type | String | ✅ | Instrument type (online_banking) |
properties.state | String | ✅ | Customer's state |
properties.post_code | String | ✅ | Customer's post code |
properties.address | String | ✅ | Customer's address |
server_url | URL | Webhook notification will be sent to this URL | |
result_url | URL | Customer will be redirected to this URL after payment |
{
"pos_id": "00000000-0000-0000-0000-000000000000",
"mode": "direct",
"amount": 5,
"method": "purchase",
"currency": "EUR",
"payway": "multibanko",
"customer_fname": "Jon",
"customer_lname": "Dou",
"customer_email": "test@gmail.com",
"customer_id": "cust_PT_456",
"customer_country": "PT",
"customer_city": "Lisboa",
"customer_ip": "1.1.1.1",
"customer_phone": "351912345678",
"customer_birthday": "1990-01-01",
"properties": {
"instrument_type": "online_banking",
"address": "test Liberdade 110",
"state": "Lisboa",
"post_code": "1250-146"
},
"order_id": "1234567890",
"description": "payment 231Hehws-1",
"server_url": "http://callback-stub:9000/consume",
"result_url": "https://google.com"
}