- 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
Simulates a verification response.
POST
/integration/sumsub-webhooks/autosubmit-step
SumsubWebhooks
Request
Body Params application/json
applicantId
string
optional
applicantType
string | null
optional
inspectionId
string
optional
correlationId
string
optional
levelName
string | null
optional
externalUserId
string
optional
type
enum<string>
optional
Allowed values:
undefinedapplicantCreatedapplicantPendingapplicantReviewedapplicantOnHoldapplicantActionPendingapplicantActionReviewedapplicantActionOnHoldapplicantPersonalInfoChangedapplicantTagsChangedapplicantActivatedapplicantDeactivatedapplicantDeletedapplicantResetapplicantPrecheckedapplicantLevelChangedapplicantWorkflowCompletedvideoIdentStatusChanged
reviewResult
object (ReviewResultDto)
optional
clientComment
string
optional
moderationComment
string
optional
reviewStatus
enum<string>
optional
Allowed values:
undefinedinitpendingprecheckedqueuedcompletedonHold
sandboxMode
boolean | null
optional
Example
{
"applicantId": "string",
"applicantType": "string",
"inspectionId": "string",
"correlationId": "string",
"levelName": "string",
"externalUserId": "string",
"type": "undefined",
"reviewResult": {
"reviewAnswer": "undefined",
"reviewRejectType": "undefined",
"clientComment": "string",
"moderationComment": "string"
},
"reviewStatus": "undefined",
"sandboxMode": 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 '/integration/sumsub-webhooks/autosubmit-step' \
--header 'Content-Type: application/json' \
--data-raw '{
"applicantId": "string",
"applicantType": "string",
"inspectionId": "string",
"correlationId": "string",
"levelName": "string",
"externalUserId": "string",
"type": "undefined",
"reviewResult": {
"reviewAnswer": "undefined",
"reviewRejectType": "undefined",
"clientComment": "string",
"moderationComment": "string"
},
"reviewStatus": "undefined",
"sandboxMode": true
}'
Responses
🟢200OK
application/json
Body
isFailed
boolean
read-onlyoptional
isSuccess
boolean
read-onlyoptional
reasons
array[object (IReason) {2}] | null
read-onlyoptional
message
string | null
read-onlyoptional
metadata
object | null
read-onlyoptional
errors
array[object (IError) {3}] | null
read-onlyoptional
message
string | null
read-onlyoptional
metadata
object | null
read-onlyoptional
reasons
array[object (IError) {3}] | null
read-onlyoptional
successes
array[object (ISuccess) {2}] | null
read-onlyoptional
message
string | null
read-onlyoptional
metadata
object | null
read-onlyoptional
Example
{
"isFailed": true,
"isSuccess": true,
"reasons": [
{
"message": "string",
"metadata": {
"property1": null,
"property2": null
}
}
],
"errors": [
{
"message": "string",
"metadata": {
"property1": null,
"property2": null
},
"reasons": [
{}
]
}
],
"successes": [
{
"message": "string",
"metadata": {
"property1": null,
"property2": null
}
}
]
}