- 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
/Client
GET
/Client
Client
Request
None
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 GET '/Client'
Responses
🟢200OK
application/json
Body
id
string <uuid>
optional
type
enum<string>Â
optional
Allowed values:
companyindividual
editorUserId
string <uuid>
optional
onboardingId
string <uuid>
optional
status
enum<string>Â
optional
Allowed values:
inactiveactiveblocked
address
object (AddressDto)Â
optional
streetLine1
stringÂ
required
>= 1 characters<= 255 characters
streetLine2
string  | nullÂ
optional
city
stringÂ
required
>= 1 characters<= 255 characters
state
string  | nullÂ
optional
<= 255 characters
zip
stringÂ
required
>= 1 characters<= 255 characters
country
string  | nullÂ
optional
phoneNumber
stringÂ
optional
email
string  | nullÂ
optional
created
string <date-time>
optional
riskLevel
integer <int32>
optional
isDefaultCompliant
booleanÂ
optional
firstName
stringÂ
optional
lastName
stringÂ
optional
citizenshipCountry
stringÂ
optional
passportNumber
stringÂ
optional
residenceCountry
stringÂ
optional
dateOfBirth
string <date>
optional
document
object (IdentificationDocumentDto)Â
optional
issuedBy
string  | nullÂ
optional
expirationDate
string <date> | nullÂ
optional
type
enum<string>Â
optional
Allowed values:
passportdriverLicenseidCardother
number
string  | nullÂ
optional
issuedCountryCode
string  | nullÂ
optional
issuedDate
string <date> | nullÂ
optional
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"type": "company",
"editorUserId": "c5c2f4a5-c36d-4d4d-9e5c-2659c938a266",
"onboardingId": "f4fce315-9b7c-4302-989a-521be9ec9bca",
"status": "inactive",
"address": {
"streetLine1": "string",
"streetLine2": "string",
"city": "string",
"state": "string",
"zip": "string",
"country": "string"
},
"phoneNumber": "string",
"email": "string",
"created": "2019-08-24T14:15:22Z",
"riskLevel": 0,
"isDefaultCompliant": true,
"firstName": "string",
"lastName": "string",
"citizenshipCountry": "string",
"passportNumber": "string",
"residenceCountry": "string",
"dateOfBirth": "2019-08-24",
"document": {
"issuedBy": "string",
"expirationDate": "2019-08-24",
"type": "passport",
"number": "string",
"issuedCountryCode": "string",
"issuedDate": "2019-08-24"
}
}