Accounts Management
Get banking details
This endpoint allows you to retrieve information about your accounts (IBANs), which you can use to create payment instructions for receiving incoming payments
GET
/api/1/eurowallet/deposit-detailsRequest
This request does not require any parameters
Response
clientName
string required
Your name (as registered in our system)
bankName
string required
The name of the beneficiary bank that must be specified when sending money to your Nexpay account via
SEPA and SEPA_INSTANT.For payments sent through the
SWIFT networks see the details below.bankAddress
string required
The address of the beneficiary bank that can be specified when sending money to your Nexpay account via
SEPA and SEPA_INSTANT.For payments sent through the
SWIFT networks see the details below.bicCode
string required
Nexpay BIC code that can be specified when sending money to your Nexpay account via
SEPA.For payments sent through the
SWIFT networks see the details below.swift
object required
An object that contains payment instructions for payment via the
SWIFT networkSWIFT deposit detail structure
beneficiaryName
string required
The name of the beneficiary that must be specified when sending money to your Nexpay account via the
SWIFT network.The sender must indicate
Nexpay as the beneficiary.beneficiaryAddress
string required
The address of the beneficiary that must be specified when sending money to your Nexpay account via the
SWIFT network.The sender must indicate
Nexpay address.bankName
string required
The name of the beneficiary bank that must be specified when sending money to your Nexpay account via the
SWIFT network.bankAddress
string required
The address of the beneficiary bank that must be specified when sending money to your Nexpay account via the
SWIFT network.bankSwiftCode
string required
Beneficiary bank BIC code that can be specified when sending money to your Nexpay account via the
SWIFT network.accounts
array of string required
List of all active accounts (IBANs) that can be used for receiving payments via
SEPA and SEPA_INSTANT.swiftAccounts
array of string required
List of all active virtual accounts (vIBANs) that can be used for receiving payments via the
SWIFT network.Examples
GET url: /api/1/eurowallet/deposit-details
{
"clientName": "John Smith",
"bankName": "NexPay, UAB",
"bankAddress": "J. Savickio g. 4, Vilnius, Lithuania",
"bankCode": "NEUALT21",
"swift": {
"beneficiaryName": "NexPay, UAB",
"beneficiaryAddress": "J. Savickio g. 4, Vilnius, Lithuania",
"bankName": "Incore Bank AG",
"bankAddress": "Grossmatt , 716, Bibern, Switzerland",
"bankSwiftCode": "CZHHAHZL"
},
"accounts": [
"LT233080020000000685",
"LT933080020000000686",
"LT593080020000000910"
],
"swiftAccounts": [
"CH89087999390000000U7"
]
}