- FinLego Core Banking
- Services REST API
- ClientProfile - FrontOffice
- ClientProfile - System
- GeneralLedger - System (1)
- Accounts
- /AccountsPOST
- /v2/internal/AccountsPOST
- /AccountsGET
- /v2/internal/Accounts/recalculatePOST
- /Accounts/{id}PATCH
- /internal/Accounts/calculateBalancesPOST
- /Accounts/{id}GET
- /v2/ledger/internal/Accounts/{accountId}GET
- /Accounts/{id}DELETE
- /v2/ledger/internal/Accounts/searchPOST
- /Accounts/send-otpPOST
- /v2/ledger/internal/Accounts/getAggregatedAmountsGET
- /Accounts/otp-verificationPOST
- /Accounts/{accountNumber}GET
- /Accounts/reorder-accountsPUT
- 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
- 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
/v2/ledger/internal/Accounts/search
POST
/v2/ledger/internal/Accounts/search
Accounts
Request
Body Params application/json
array[string <uuid>]
optional
Example
[
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
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 '/v2/ledger/internal/Accounts/search' \
--header 'Content-Type: application/json' \
--data-raw '[
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
]'
Responses
🟢200OK
application/json
Body
array of:
id
string <uuid>
optional
created
object (Payler.Helpers.DateTimes.DateTimeOffsetStrict)Â
optional
modified
object (Payler.Helpers.DateTimes.DateTimeOffsetStrict)Â
optional
normalBalance
enum<string>Â
optional
Allowed values:
debtcredit
accountingType
enum<string>Â
optional
Allowed values:
assetsliabilitiesrevenueexpensesownersFundsIntroduced
number
stringÂ
optional
currency
enum<string>Â
optional
Allowed values:
cadcnydkknoksekchfgbpusdeurpln
amount
number <double>
optional
pendingAmount
number <double>
optional
totalAmount
number <double>
optional
mayOverdraft
booleanÂ
optional
Example
[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"created": {},
"modified": {},
"normalBalance": "debt",
"accountingType": "assets",
"number": "string",
"currency": "cad",
"amount": 0,
"pendingAmount": 0,
"totalAmount": 0,
"mayOverdraft": true
}
]
🟠400Bad Request
🟠404Not Found
🟠422Unprocessable Content
🔴500Internal Server Error