- 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
Fetch internal requests based on the specified filters.
GET
/internal/IncomingRequests
IncomingRequests
Request
Query Params
clientId
string <uuid>
optional
SenderName
string
optional
SenderIban
string
optional
RecipientName
string
optional
RecipientIban
string
optional
BaasProvider
enum<string>
optional
Allowed values:
bclpbmyEUPayemBankmanualBaasclearJunctionfuseMeinCorerailsrnovebastubBaas
SortBy
string
optional
SortOrder
enum<string>
optional
Allowed values:
ascdesc
PageNumber
integer <int32>
optional
PageSize
integer <int32>
optional
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 '/internal/IncomingRequests'
Responses
🟢200Request has been successfully completed.
application/json
Body
data
array[object (IncomingRequestDto) {22}]
optional
id
string <uuid>
optional
created
string <date-time>
optional
modified
string <date-time>
optional
amount
number <double>
optional
currency
string
optional
description
string | null
optional
recipientName
string | null
optional
recipientIban
string | null
optional
recipientAccountNumber
string | null
optional
baasProvider
enum<string>
optional
Allowed values:
bclpbmyEUPayemBankmanualBaasclearJunctionfuseMeinCorerailsrnovebastubBaas
paymentSystemType
enum<string>
optional
Allowed values:
undefinedsepaswiftinternalselffasterUK
error
string | null
optional
clientId
string <uuid> | null
optional
senderName
string | null
optional
senderAddress
string | null
optional
senderZipCode
string | null
optional
senderCity
string | null
optional
senderCountry
string | null
optional
senderIban
string | null
optional
senderBic
string | null
optional
senderAccountNumber
string | null
optional
baasProviderTransferId
string
optional
page
object (PageInfoDto)
optional
pageNumber
integer <int64>
optional
pageSize
integer <int64>
optional
totalRecords
integer <int64>
optional
totalPages
integer <int64>
read-onlyoptional
Example
{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"created": "2019-08-24T14:15:22Z",
"modified": "2019-08-24T14:15:22Z",
"amount": 0,
"currency": "string",
"description": "string",
"recipientName": "string",
"recipientIban": "string",
"recipientAccountNumber": "string",
"baasProvider": "bc",
"paymentSystemType": "undefined",
"error": "string",
"clientId": "5e505642-9024-474d-9434-e5a44f505cc5",
"senderName": "string",
"senderAddress": "string",
"senderZipCode": "string",
"senderCity": "string",
"senderCountry": "string",
"senderIban": "string",
"senderBic": "string",
"senderAccountNumber": "string",
"baasProviderTransferId": "string"
}
],
"page": {
"pageNumber": 0,
"pageSize": 0,
"totalRecords": 0,
"totalPages": 0
}
}
🟠400Bad Request
🔴500Internal Server Error