- 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
- Fetch recipients based on the specified filters.GET
- Fetch recipients based on the specified filters.GET
- Add a recipient.POST
- Fetch recipient details by the specified recipient identifier.GET
- Fetch recipient details by the specified recipient identifier.GET
- Update the visibility details of a recipient.PUT
- 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
Add a recipient.
POST
/Recipients
Recipients
Request
Body Params application/json
Command to create recipient account
recipient
object (CreateRecipientAccountDtoRecipientBaseDto)
optional
recipientType
enum<string>
optional
Allowed values:
corporateindividualinternalself
legalName
string | null
optional
firstName
string | null
optional
lastName
string | null
optional
registrationAddress
object (RecipientAddressDto)
optional
account
object (CreateRecipientAccountDto)
optional
isVisible
boolean
optional
Example
{
"recipient": {
"recipientType": "corporate",
"legalName": "string",
"firstName": "string",
"lastName": "string",
"registrationAddress": {
"country": "st",
"postalCode": "string",
"city": "string",
"street": "string"
},
"account": {
"bic": "string",
"bankCountry": "string",
"bankName": "string",
"currency": "string",
"ukAccountNumber": "string",
"ukSortCode": "string",
"accountIdentifier": "string"
},
"isVisible": true
}
}
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 '/Recipients' \
--header 'Content-Type: application/json' \
--data-raw '{
"recipient": {
"recipientType": "corporate",
"legalName": "string",
"firstName": "string",
"lastName": "string",
"registrationAddress": {
"country": "st",
"postalCode": "string",
"city": "string",
"street": "string"
},
"account": {
"bic": "string",
"bankCountry": "string",
"bankName": "string",
"currency": "string",
"ukAccountNumber": "string",
"ukSortCode": "string",
"accountIdentifier": "string"
},
"isVisible": true
}
}'
Responses
🟢200Request has been successfully completed.
application/json
Body
string <uuid>
optional
Example
"497f6eca-6276-4993-bfeb-53cbbbba6f08"
🟠400The provided recipient details are invalid.
🔴500Internal Server Error