Get Payment Methods
GET/v1/methods
Get Payment Methods
Request
Query Parameters
Optional. Returns payment methods available for the specific transaction
Optional. Returns payment methods available for the specific amount
Optional. Returns payment methods available for the specific currency
Optional. Returns payment methods available for the specific country
Responses
- 200
- 400
- 401
OK
Response Headers
Date
string
Content-Type
string
Transfer-Encoding
string
Connection
string
Set-Cookie
string
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
X-Request-ID
string
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Array [
]
Array [
]
Array [
]
banklinks
object[]
Array of banklink payment methods
The name of the payment method
URL related to the payment method
Single country associated with the payment method
List of countries associated with the payment method - EE, LV, LT or FI
The minimum amount value
The maximum amount value
Channel information
Display name for the payment method
URL of the payment method's logo
cards
object[]
Array of card payment methods
The name of the payment method
URL related to the payment method
Single country associated with the payment method
List of countries associated with the payment method - EE, LV, LT or FI
The minimum amount value
The maximum amount value
Channel information
Display name for the payment method
URL of the payment method's logo
payLater
object[]
Array of pay Later methods
The name of the payment method
URL related to the payment method
Single country associated with the payment method
List of countries associated with the payment method - EE, LV, LT or FI
The minimum amount value
The maximum amount value
Channel information
Display name for the payment method
URL of the payment method's logo
other
object[]
Array of other methods
The name of the payment method
URL related to the payment method
Single country associated with the payment method
List of countries associated with the payment method - EE, LV, LT or FI
The minimum amount value
The maximum amount value
Channel information
Display name for the payment method
URL of the payment method's logo
{
"banklinks": [
{
"name": "string",
"url": "string",
"country": "string",
"countries": [
"string"
],
"min_amount": 0,
"max_amount": 0,
"channel": "string",
"display_name": "string",
"logo_url": "string"
}
],
"cards": [
{
"name": "string",
"url": "string",
"country": "string",
"countries": [
"string"
],
"min_amount": 0,
"max_amount": 0,
"channel": "string",
"display_name": "string",
"logo_url": "string"
}
],
"payLater": [
{
"name": "string",
"url": "string",
"country": "string",
"countries": [
"string"
],
"min_amount": 0,
"max_amount": 0,
"channel": "string",
"display_name": "string",
"logo_url": "string"
}
],
"other": [
{
"name": "string",
"url": "string",
"country": "string",
"countries": [
"string"
],
"min_amount": 0,
"max_amount": 0,
"channel": "string",
"display_name": "string",
"logo_url": "string"
}
]
}
{
"banklinks": [
{
"name": "swedbank",
"url": "https://payment.test.maksekeskus.ee/open-banking.html?method=EE_SWED_OB&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "Swedbank EE OB",
"max_amount": 15000,
"display_name": "Swedbank",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/swedbank.png"
},
{
"name": "seb",
"url": "https://payment.test.maksekeskus.ee/open-banking.html?method=EE_SEB_OB&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "SEB EE OB",
"max_amount": 15000,
"display_name": "SEB",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/seb.png"
},
{
"name": "lhv",
"url": "https://payment.test.maksekeskus.ee/open-banking.html?method=EE_LHV_OB&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "LHV EE OB",
"max_amount": 15000,
"display_name": "LHV",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/lhv.png"
},
{
"name": "nordea",
"url": "https://payment.test.maksekeskus.ee/banklink.html?method=EE_NORDEA&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "Luminor EE",
"max_amount": 100000,
"display_name": "Luminor",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/luminor.png"
},
{
"name": "krediidipank",
"url": "https://payment.test.maksekeskus.ee/banklink.html?method=EE_KREDIIDI&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "Coop Pank EE",
"max_amount": 100000,
"display_name": "Coop Pank",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/coop.png"
},
{
"name": "pocopay",
"url": "https://payment.test.maksekeskus.ee/banklink.html?method=EE_POCOPAY&trx=",
"country": "ee",
"countries": [
"ee",
"fi"
],
"channel": "Pocopay EE",
"max_amount": 100000,
"display_name": "Pocopay",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/pocopay.png"
},
{
"name": "revolut",
"url": "https://payment.test.maksekeskus.ee/open-banking.html?method=REVOLUT_PIS&trx=",
"country": "EE",
"countries": [
"EE"
],
"channel": "Revolut PIS",
"max_amount": 15000,
"display_name": "Revolut",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/revolut.png"
}
],
"cards": [
{
"name": "visa",
"url": "https://payment.test.maksekeskus.ee/card.html?trx=",
"channel": "Visa",
"max_amount": 1000,
"display_name": "Visa",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/visa.png"
},
{
"name": "mastercard",
"url": "https://payment.test.maksekeskus.ee/card.html?trx=",
"channel": "MasterCard",
"max_amount": 1000,
"display_name": "MasterCard",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/mastercard.png"
}
],
"payLater": [
{
"name": "slice",
"url": "https://payment.test.maksekeskus.ee/pay-later.html?method=EE_SLICE&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "Inbank jaga osadeks",
"min_amount": 75,
"max_amount": 2500,
"display_name": "Inbank jaga osadeks",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/slice.png"
},
{
"name": "liisi_ee",
"url": "https://payment.test.maksekeskus.ee/pay-later.html?method=EE_LIISI_EE&trx=",
"country": "ee",
"countries": [
"ee"
],
"channel": "Liisi ID EE",
"min_amount": 30,
"max_amount": 10000,
"display_name": "Liisi ID",
"logo_url": "https://static.test.maksekeskus.ee/img/channel/lnd/liisi_ee.png"
}
],
"other": []
}
Bad Request
Response Headers
Date
string
Content-Type
string
Transfer-Encoding
string
Connection
string
Set-Cookie
string
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
X-Request-ID
string
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Error code indicating the type of error
Error message describing the issue
errors
object[]
Type of error
Parameter in the request that caused the error
The expected value or format for the parameter
{
"code": 1001,
"message": "Invalid request",
"errors": [
{
"type": "string",
"parameter": "transaction",
"expected": "string"
}
]
}
{
"code": 1001,
"message": "Invalid request",
"errors": [
{
"type": "invalid",
"parameter": "transaction",
"expected": "correct UUID"
}
]
}
Unauthorized
Response Headers
Date
string
Content-Type
string
Transfer-Encoding
string
Connection
string
Set-Cookie
string
WWW-Authenticate
string
- application/json
- Schema
- Example (from schema)
- Example
Schema
Error code representing the type of error.
Detailed error message.
{
"code": 0,
"message": "string"
}
{
"code": 1004,
"message": "Unauthorized"
}