- FinLego Core Banking
- Services REST API
- ClientProfile - FrontOffice
- ClientProfile - System
- GeneralLedger - System (1)
- Accounts
- /Accounts
- /v2/internal/Accounts
- /Accounts
- /v2/internal/Accounts/recalculate
- /Accounts/{id}
- /internal/Accounts/calculateBalances
- /Accounts/{id}
- /v2/ledger/internal/Accounts/{accountId}
- /Accounts/{id}
- /v2/ledger/internal/Accounts/search
- /Accounts/send-otp
- /v2/ledger/internal/Accounts/getAggregatedAmounts
- /Accounts/otp-verification
- /Accounts/{accountNumber}
- /Accounts/reorder-accounts
- Transactions
- BaasProvider
- BackgroundJob
- DailyAccountBalance
- DailyCheck
- Reports
- TreasuryManagement
- Payments
- Creates payment with single transaction and transfers money between accounts
- Creates payment in Draft state without any money transfers
- Pends payment and holds funds in case of withdrawals
- Posts payment, withdraws held funds and deposits it to corresponding account
- Cancels payment and performs payback in case of held
- Accounts
- GeneralLedger - System (2)
- Accounts
- Payments
- Creates payment with single transaction and transfers money between accounts
- Creates payment in Draft state without any money transfers
- Pends payment and holds funds in case of withdrawals
- Posts payment, withdraws held funds and deposits it to corresponding account
- Cancels payment and performs payback in case of held
- TransferOrchestrator - FrontOffice
- Confirmations
- Documents
- Recipients
- Transfers
- Fetch transfers based on the specified filters.
- Fetch transfers based on the specified filters.
- Fetch transfer details by the specified transfer identifier.
- Fetch transfer details by the specified transfer identifier.
- Create an outgoing transfer.
- Fetch outgoing transfer details by the specified transfer identifier.
- Confirm an outgoing transfer.
- Fetch incoming transfer details by the specified transfer identifier.
- Cancel an outgoing transfer by the transfer identifier.
- Fetch foreign exchange transfer details by the specified transfer identifier.
- Fetch outgoing transfer details by the specified transfer identifier.
- Fetch incoming transfer details by the specified transfer identifier.
- Create a foreign exchange transfer.
- Confirm an outgoing transfer.
- Cancel an outgoing transfer by the transfer identifier.
- Fetch foreign exchange transfer details by the specified transfer identifier.
- Fetch a transfer type by recipient account and currency.
- TransferOrchestrator - System (1)
- Documents
- IncomingRequests
- Recipients
- Transfers
- Fetch internal transfers based on the specified filters.
- Fetch outgoing transfer details by the specified transfer identifier.
- Fetch incoming transfer details by the specified transfer identifier.
- Assign an unrecognized incoming transfer.
- Fetch foreign exchange transfer details by the specified transfer identifier.
- Execute a transfer manually.
- Continue processing of an outgoing transfer.
- Fetch outgoing transfers based on the specified filters.
- Fetch incoming transfers based on the specified filters.
- Fetch foreign exchange transfers based on the specified filters.
- TransferOrchestrator - System (2)
- Onboarding Integration
Imports a new individual client from an integrated WL customer's onboarding system
POST
/integration/clients/individuals
ClientsImport
Request
Body Params application/json
externalId
string
required
>= 1 characters<= 100 characters
riskLevel
enum<string>
required
Allowed values:
lowmediumhighprohibited
address
object (AddressDto)
required
streetLine1
string
required
>= 1 characters<= 255 characters
Match pattern:
^[A-Za-z0-9\.\/\,\(\)\-# ]+$
streetLine2
string | null
optional
city
string
required
>= 1 characters<= 255 characters
Match pattern:
^[A-Za-z0-9\.\/\,\(\)\-# ]+$
state
string | null
optional
<= 255 characters
zip
string
required
>= 1 characters<= 255 characters
country
string
required
>= 2 characters<= 2 characters
phoneNumber
string
required
>= 5 characters<= 17 characters
email
string <email>
required
>= 5 characters<= 64 characters
firstName
string
required
>= 1 characters<= 255 characters
Match pattern:
^[A-Za-z\-\.' ]+$
lastName
string
required
>= 1 characters<= 255 characters
Match pattern:
^[A-Za-z\-\.' ]+$
citizenshipCountry
string
required
>= 2 characters<= 2 characters
identificationDocument
object (IdentificationDocumentDto)
required
issuedBy
string
required
>= 1 characters<= 100 characters
expirationDate
string <date>
required
type
enum<string>
required
Allowed values:
passportdriverLicenseidCardother
number
string
required
>= 1 characters<= 30 characters
issuedCountryCode
string
required
>= 2 characters<= 2 characters
issuedDate
string <date>
required
residenceCountry
string
required
>= 2 characters<= 2 characters
dateOfBirth
string <date>
required
>= 1 characters
Example
{
"externalId": "string",
"riskLevel": "low",
"address": {
"streetLine1": "string",
"streetLine2": "string",
"city": "string",
"state": "string",
"zip": "string",
"country": "st"
},
"phoneNumber": "string",
"email": "user@example.com",
"firstName": "string",
"lastName": "string",
"citizenshipCountry": "st",
"identificationDocument": {
"issuedBy": "string",
"expirationDate": "2019-08-24",
"type": "passport",
"number": "string",
"issuedCountryCode": "st",
"issuedDate": "2019-08-24"
},
"residenceCountry": "st",
"dateOfBirth": "2019-08-24"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/integration/clients/individuals' \
--header 'Content-Type: application/json' \
--data-raw '{
"externalId": "string",
"riskLevel": "low",
"address": {
"streetLine1": "string",
"streetLine2": "string",
"city": "string",
"state": "string",
"zip": "string",
"country": "st"
},
"phoneNumber": "string",
"email": "user@example.com",
"firstName": "string",
"lastName": "string",
"citizenshipCountry": "st",
"identificationDocument": {
"issuedBy": "string",
"expirationDate": "2019-08-24",
"type": "passport",
"number": "string",
"issuedCountryCode": "st",
"issuedDate": "2019-08-24"
},
"residenceCountry": "st",
"dateOfBirth": "2019-08-24"
}'
Responses
🟢200OK
application/json
Body
Successful response to a client import command
clientId
string <uuid>
required
externalId
string
required
<= 100 characters
Example
{
"clientId": "5e505642-9024-474d-9434-e5a44f505cc5",
"externalId": "string"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠409Conflict
🔴500Internal Server Error