# Orchestrated operations
Some operations are not a single handler. What does that change for me?

:::info
**Describes:** the published operation catalog in the snapshot this portal was built from.

**Does not describe:** any running deployment. A deployment carries catalog entries this snapshot does not, so an operation absent here may still exist somewhere and an operation present here may not be installed everywhere.

An operation with no mark below is not being described as a plain handler — see *What this page does not tell you*.
:::

Part of this platform's published surface does not execute as one request-scoped handler. Some operations are run as an orchestration; others are invoked by one as a step. Both change how a caller should think about retries, timeouts and undo, and neither was documented anywhere before this page. What follows is the whole of what the portal will say about it.

## The two statements this portal makes

An operation marked **orchestrated** is declared in the platform catalog as being run by a process rather than by a direct service handler.

An operation marked **composed** is one that the platform itself invokes as a step inside orchestrations of its own. You can still call it directly, and it is documented for exactly that. The mark tells you that the platform sometimes calls it as part of something larger, and that your direct call is not part of that something.

No operation is marked both, and an operation with no mark is not being described as "not orchestrated" — see *What this page does not tell you*.

## Your call is its own unit of work

This is the consequence that matters and it applies to both marks. When the platform runs an operation inside an orchestration, that orchestration is the unit of work: it has a scope, and the platform can undo what happened inside it. **A request that arrives over HTTP does not create such a scope.** Your call commits on its own and it commits when it returns.

So there is no automatic rollback of a call you made. If a call succeeds and the next one fails, the first one stands. Undoing it is your responsibility and it is done the way any other caller would do it — by invoking the operation that reverses the effect, if the published surface has one. The platform will not reverse it for you and will not know that you wanted it to.

The same boundary works in the other direction: work an orchestration has done but not yet committed is not visible to you. A read that follows a write performed inside an orchestration may not show that write until the orchestration finishes, so read-after-write does not hold across that boundary the way it does within your own call.

## Retries

Because your call is its own unit of work, a retry after a timeout is a second, independent execution — not a resumption of the first. That is true of every endpoint on this platform, and it is more consequential for an orchestrated one, because the first attempt may have run further than the absence of a response suggests.

The platform ships one mechanism for this and it is documented in full: the idempotency header. It replays a cached successful response without re-executing, it re-executes after a failure, and the request body is part of the key's identity. Read [Idempotency and retry safety](/platform/contract) before retrying anything on this list.

## When you are not answered on completion

An orchestrated operation marked **acknowledged** returns before the orchestration has finished. The response tells you the request was accepted; it does not tell you the outcome, and a 2xx on such a call is not a statement that the work succeeded.

An operation marked **answered on completion** holds the connection until the orchestration finishes and then answers with its result. Size your client timeout for the work, not for a single handler.

Where the portal does not know which of the two applies, it says so instead of choosing.

## What this page does not tell you

It does not tell you which orchestration runs, how many steps it has, in what order, what it calls, how it branches, or what happens on any particular failure inside it. That is the bank's process design and it is not published outside the bank. The absence is deliberate and it is not a gap this portal intends to close.

It does not tell you how many orchestrations invoke a composed operation. An operation invoked by one and an operation invoked by forty appear identically here.

An operation with no mark on this page is not being described as a plain handler. It means only that the catalog does not declare it process-backed and that no process deployed at this snapshot invokes it as a step. Absence here is absence of a published statement, not a guarantee about behaviour.

## The orchestrated operations

93 of 4984 published operation(s) are declared process-backed. Of those, 69 answer on completion, 7 acknowledge and return, and 17 resolve to no process this snapshot deploys, so their answer behaviour is not stated below rather than guessed.

| Operation | Domain | Service code | When you are answered |
| --- | --- | --- | --- |
| POST /compensating-transactions/resolve | [`aurax-bff`](/api/aurax-bff) | aurax-bff-redirect-resolve-correlation-bpm | — |
| POST /create-denomination-bpmn | [`aurax-bff`](/api/aurax-bff) | aurax-bff-redirect-create-denomination-bpmn | — |
| POST /delete-denomination-bpmn | [`aurax-bff`](/api/aurax-bff) | aurax-bff-redirect-delete-denomination-bpmn | — |
| POST /limit-items | [`aurax-bff`](/api/aurax-bff) | aurax-bff-redirect-limit-item-bpm | — |
| PUT /update-denomination-bpmn | [`aurax-bff`](/api/aurax-bff) | aurax-bff-redirect-update-denomination-bpmn | — |
| POST /accounts | [`bpm`](/api/bpm) | customer-account-create-ui-bpm | acknowledged |
| POST /calculate-customer-risk-ui | [`bpm`](/api/bpm) | calculate-customer-risk-ui-bpmn | answered on completion |
| POST /calculate-early-payment | [`bpm`](/api/bpm) | calculate-early-payment-bpmn | answered on completion |
| POST /calendars | [`bpm`](/api/bpm) | create-calendar-ui-bpm | acknowledged |
| POST /cash-withdrawal | [`bpm`](/api/bpm) | Cash-Withdrawal-BPM | — |
| POST /commit-test-process-3 | [`bpm`](/api/bpm) | commit-test-process | answered on completion |
| POST /create-accounting-entry-condition | [`bpm`](/api/bpm) | create-accounting-entry-condition-bpmn | answered on completion |
| POST /create-accounting-entry-definition | [`bpm`](/api/bpm) | create-accounting-entry-definition-bpmn | answered on completion |
| POST /create-accounting-entry-definition-condition-detail-bpmn | [`bpm`](/api/bpm) | create-accounting-entry-definition-condition-detail | answered on completion |
| POST /create-accounting-entry-definition-detail | [`bpm`](/api/bpm) | create-accounting-entry-definition-detail-bpmn | answered on completion |
| POST /create-customer-application-validation-for-dgfin | [`bpm`](/api/bpm) | create-customer-application-validation-for-dgfin-bpmn | — |
| POST /create-customer-collateral-field-value-bpmn | [`bpm`](/api/bpm) | create-collateral-field-value-bpmn | answered on completion |
| POST /create-external-vendor | [`bpm`](/api/bpm) | create-external-vendor-bpmn | answered on completion |
| POST /create-financial-statement-template-with-item-and-detail | [`bpm`](/api/bpm) | create-financial-statement-template-with-item-and-detail-bpmn | answered on completion |
| POST /create-fiscal-year | [`bpm`](/api/bpm) | create-fiscal-year-bpmn | answered on completion |
| POST /create-ledger | [`bpm`](/api/bpm) | create-ledger-bpmn | answered on completion |
| POST /create-ledger-level-format | [`bpm`](/api/bpm) | create-ledger-level-format-bpmn | answered on completion |
| POST /create-ledger-matrix | [`bpm`](/api/bpm) | create-ledger-matrix-bpmn | answered on completion |
| POST /create-ledger-matrix-field | [`bpm`](/api/bpm) | create-ledger-matrix-field-bpmn | answered on completion |
| POST /create-ledger-matrix-value | [`bpm`](/api/bpm) | create-ledger-matrix-value-bpmn | answered on completion |
| POST /create-loan-delegation | [`bpm`](/api/bpm) | create-loan-delegation-ui-bpm | answered on completion |
| POST /create-risk-query-purpose | [`bpm`](/api/bpm) | create-risk-query-purpose-bpmn | answered on completion |
| POST /create-tax-definition | [`bpm`](/api/bpm) | create-tax-definition-bpmn | answered on completion |
| POST /create-update-ledger-level-format | [`bpm`](/api/bpm) | create-update-ledger-level-format-bpmn | answered on completion |
| POST /create_customer_loan_delay_penalty_payment_bpmn | [`bpm`](/api/bpm) | create-customer-loan-delay-penalty-payment-bpmn | answered on completion |
| POST /customer-audit | [`bpm`](/api/bpm) | customer-audit-with-otp | answered on completion |
| DELETE /delete-accounting-entry-definition-detail | [`bpm`](/api/bpm) | delete-accounting-entry-definition-detail-bpmn | answered on completion |
| POST /delete-external-vendor | [`bpm`](/api/bpm) | delete-external-vendor-bpmn | answered on completion |
| POST /delete-external-vendor-phone | [`bpm`](/api/bpm) | delete-external-vendor-phone-bpmn | answered on completion |
| DELETE /delete-financial-transaction | [`bpm`](/api/bpm) | delete-financial-transaction-bpmn | answered on completion |
| DELETE /delete-fiscal-period-and-fiscal-year-bpmn | [`bpm`](/api/bpm) | delete-fiscal-period-and-fiscal-year | answered on completion |
| POST /delete-internal-vendor | [`bpm`](/api/bpm) | delete-internal-vendor-bpmn | answered on completion |
| DELETE /delete-ledger | [`bpm`](/api/bpm) | delete-ledger-bpmn | answered on completion |
| DELETE /delete-ledger-matrix | [`bpm`](/api/bpm) | delete-ledger-matrix-bpmn | answered on completion |
| DELETE /delete-ledger-matrix-field | [`bpm`](/api/bpm) | delete-ledger-matrix-field-bpmn | answered on completion |
| DELETE /delete-realm-role | [`bpm`](/api/bpm) | delete-realm-role-bpm | acknowledged |
| DELETE /delete-risk-query-purpose | [`bpm`](/api/bpm) | delete-risk-query-purpose-bpmn | answered on completion |
| DELETE /delete-template-design-bpm | [`bpm`](/api/bpm) | delete-template-design-bpmn | answered on completion |
| DELETE /delete-vendor-external-account | [`bpm`](/api/bpm) | delete-vendor-external-account-bpmn | answered on completion |
| POST /delete-vendor-internal-account | [`bpm`](/api/bpm) | delete-vendor-internal-account-bpmn | answered on completion |
| POST /dms-items | [`bpm`](/api/bpm) | folder-actions-ui-bpm | answered on completion |
| POST /dms-items/direct-upload | [`bpm`](/api/bpm) | upload-document-bpm | — |
| POST /dms-models | [`bpm`](/api/bpm) | create-dms-model-ui-bpm | acknowledged |
| POST /document-items | [`bpm`](/api/bpm) | document-item-create-ui-bpm | acknowledged |
| POST /financial-transactions-bpm | [`bpm`](/api/bpm) | create-financial-transaction-bpmn | answered on completion |
| POST /folders | [`bpm`](/api/bpm) | create-folder-bpm | — |
| DELETE /gl-code-formats | [`bpm`](/api/bpm) | delete-gLCode-format-bpmn | answered on completion |
| POST /gl-code-formats | [`bpm`](/api/bpm) | create-glcode-format-bpmn | answered on completion |
| PUT /gl-code-formats | [`bpm`](/api/bpm) | update-gLCode-format-bpmn | answered on completion |
| POST /keycloak-assign-realm-role-to-user | [`bpm`](/api/bpm) | assign-realm-role-to-user-bpm | answered on completion |
| POST /keycloak-get-user-list | [`bpm`](/api/bpm) | get-user-list-bpm | answered on completion |
| POST /keycloak-remove-realm-role-from-user | [`bpm`](/api/bpm) | remove-realm-role-from-user-bpm | — |
| POST /krs_risk_report_bpmn | [`bpm`](/api/bpm) | krs-risk-report-bpmn | answered on completion |
| POST /mbprocessdeneme3 | [`bpm`](/api/bpm) | processdeneme3 | — |
| POST /money-transfer-to-another-account | [`bpm`](/api/bpm) | money-transfer-to-another-account-BPM | answered on completion |
| POST /organizations | [`bpm`](/api/bpm) | create-organization-bpm | answered on completion |
| POST /otp-items | [`bpm`](/api/bpm) | otp-item-create-ui-bpm | acknowledged |
| PUT /partial-update-user-attributes-bpm | [`bpm`](/api/bpm) | partial-update-user-attributes-partial-bpm | answered on completion |
| POST /person-info-changes | [`bpm`](/api/bpm) | create-person-info-changed-bpm | — |
| POST /phone-ui-bpm | [`bpm`](/api/bpm) | Customer_Phone_screen | — |
| GET /realms | [`bpm`](/api/bpm) | get-realm-info-bpm | answered on completion |
| POST /risks | [`bpm`](/api/bpm) | create-risk-definition-ui-bpm | answered on completion |
| POST /save-transaction-for-loan | [`bpm`](/api/bpm) | save-transaction-for-loan-bpmn | acknowledged |
| POST /script-test | [`bpm`](/api/bpm) | script-test-bpm | — |
| POST /single-transaction-accrual | [`bpm`](/api/bpm) | single-transaction-accrual-bpmn | answered on completion |
| POST /sms-mail-routing-bpm | [`bpm`](/api/bpm) | sms-mail-routing | answered on completion |
| POST /test-transcation | [`bpm`](/api/bpm) | transaction-limit-test-with-amount | answered on completion |
| POST /trigger-accounting-engine | [`bpm`](/api/bpm) | trigger-accounting-engine-bpmn | answered on completion |
| PUT /update-accounting-entry-definition | [`bpm`](/api/bpm) | update-accounting-entry-definition-bpmn | answered on completion |
| PUT /update-accounting-entry-definition-and-condition-and-detail-bpmn | [`bpm`](/api/bpm) | update-accounting-entry-definition-and-condition-and-detail | answered on completion |
| PUT /update-accrual-product-and-product-fields-bpmn | [`bpm`](/api/bpm) | update-accrual-product-and-product-fields-and-formulas-bpmn | answered on completion |
| POST /update-customer-collateral-usage | [`bpm`](/api/bpm) | update-customer-collateral-usage-bpmn | answered on completion |
| PUT /update-event | [`bpm`](/api/bpm) | update-event-definition-ui | answered on completion |
| POST /update-external-vendor-phone-priority | [`bpm`](/api/bpm) | update-external-vendor-phone-priority-bpmn | answered on completion |
| PUT /update-financial-transaction | [`bpm`](/api/bpm) | update-financial-transaction-bpmn | answered on completion |
| POST /update-installment-collection-status | [`bpm`](/api/bpm) | update-installment-collection-status-bpmn | answered on completion |
| POST /update-internal-vendor-status | [`bpm`](/api/bpm) | update-internal-vendor-status-bpmn | answered on completion |
| PUT /update-ledger | [`bpm`](/api/bpm) | update-ledger-bpmn | answered on completion |
| PUT /update-ledger-level-format | [`bpm`](/api/bpm) | update-ledger-level-format-bpmn | answered on completion |
| PUT /update-ledger-matrix | [`bpm`](/api/bpm) | update-ledger-matrix-bpmn | answered on completion |
| PUT /update-ledger-matrix-field | [`bpm`](/api/bpm) | update-ledger-matrix-field-bpmn | answered on completion |
| PUT /update-ledger-matrix-field-and-value | [`bpm`](/api/bpm) | update-ledger-matrix-field-and-value-bpmn | answered on completion |
| PUT /update-proposal | [`bpm`](/api/bpm) | update-proposal-ui-bpmn | answered on completion |
| PUT /update-template-design-and-create-template-design-field | [`bpm`](/api/bpm) | update-template-design-and-create-template-design-field-bpmn | answered on completion |
| POST /validations | [`bpm`](/api/bpm) | create-validation-bpm | answered on completion |
| POST /core-create-parameter-field | [`customer-application`](/api/customer-application) | customer-application-create-parameter-field-bpm | — |
| POST /core-create-parameter-value | [`customer-application`](/api/customer-application) | customer-application-parameter-value-bpm | — |
| POST /sms-notifications/send-bulk | [`notification`](/api/notification) | send-bulk-sms-notifications | — |

## The composed operations

1116 of 4984 published operation(s) are invoked by an orchestration of this platform's own as a step. You can call every one of them directly, and they are documented for exactly that. The mark tells you the platform sometimes calls the operation as part of something larger, and that your direct call is not part of that something — the consequences for retries, timeouts and undo are the ones stated above.

| Operation | Domain | Service code |
| --- | --- | --- |
| POST /account-cash-transactions/cash-deposit | [`account`](/api/account) | cash-deposit |
| POST /account-cash-transactions/cash-withdrawal | [`account`](/api/account) | cash-withdrawal |
| POST /account-constraints/by-account-id/`{accountId}`/check | [`account`](/api/account) | check-account-constraint |
| POST /account-product-rules | [`account`](/api/account) | create-account-product-rule |
| GET /account-product-rules/maps/by-account-product-id/`{accountProductId}` | [`account`](/api/account) | get-account-product-rule-map-list-by-account-product-id |
| PUT /account-product-rules/`{id}` | [`account`](/api/account) | update-account-product-rule |
| POST /account-product-rules/`{id}`/execute-formula | [`account`](/api/account) | execute-account-product-rule-formula |
| POST /account-product-rules/`{id}`/maps | [`account`](/api/account) | create-account-product-rule-map |
| POST /account-products | [`account`](/api/account) | create-account-product |
| DELETE /account-products/`{id}` | [`account`](/api/account) | delete-account-product |
| PUT /account-products/`{id}` | [`account`](/api/account) | update-account-product |
| POST /account-products/`{id}`/configs | [`account`](/api/account) | create-account-product-config |
| PUT /account-products/`{id}`/configs/`{configId}` | [`account`](/api/account) | update-account-product-config |
| POST /account-products/`{id}`/contributions | [`account`](/api/account) | create-account-product-contribution |
| POST /account-products/`{id}`/contributions/`{accountProductContributionId}`/taxes | [`account`](/api/account) | create-account-product-tax |
| GET /account-products/`{id}`/contributions/`{accountProductContributionId}`/transaction-limits | [`account`](/api/account) | get-account-product-transaction-limit-list |
| POST /account-products/`{id}`/contributions/`{accountProductContributionId}`/transaction-limits | [`account`](/api/account) | create-account-product-transaction-limit |
| PUT /account-products/`{id}`/contributions/`{accountProductContributionId}`/transaction-limits/`{transactionLimitId}` | [`account`](/api/account) | update-account-product-transaction-limit |
| DELETE /account-products/`{id}`/contributions/`{contributionId}` | [`account`](/api/account) | delete-account-product-contribution |
| GET /account-products/`{id}`/contributions/`{contributionId}` | [`account`](/api/account) | get-account-product-contribution-by-id |
| PUT /account-products/`{id}`/contributions/`{contributionId}` | [`account`](/api/account) | update-account-product-contribution |
| POST /account-products/`{id}`/convertible-currencies | [`account`](/api/account) | create-account-product-convertible-currency |
| GET /account-products/`{id}`/usages | [`account`](/api/account) | is-account-product-usaged |
| GET /accounts | [`account`](/api/account) | get-account-list |
| GET /accounts/by-account-number/`{accountNumber}`/id | [`account`](/api/account) | get-account-id-by-account-number |
| GET /accounts/by-customer-id/`{customerId}` | [`account`](/api/account) | get-account-by-customer-id |
| POST /accounts/by-customer-id/`{customerId}` | [`account`](/api/account) | create-account |
| GET /accounts/details | [`account`](/api/account) | get-account-detail-list |
| GET /accounts/`{id}` | [`account`](/api/account) | get-account-by-id |
| PUT /accounts/`{id}` | [`account`](/api/account) | update-account |
| PUT /accounts/`{id}`/close | [`account`](/api/account) | close-account |
| POST /accounts/`{id}`/details | [`account`](/api/account) | create-account-detail |
| PUT /accounts/`{id}`/details/`{accountDetailId}` | [`account`](/api/account) | update-account-detail |
| POST /accounts/`{id}`/passbooks | [`account`](/api/account) | print-passbook |
| POST /blocked-items | [`account`](/api/account) | create-blocked-item |
| PUT /blocked-items/`{id}` | [`account`](/api/account) | update-blocked-item |
| POST /cashbox-reconcilation | [`account`](/api/account) | create-cashbox-reconcilation |
| POST /cashbox-transfer | [`account`](/api/account) | create-cashbox-transfer |
| GET /cashs | [`account`](/api/account) | get-cash-box-list |
| POST /cashs | [`account`](/api/account) | create-cash-box |
| GET /cashs/ledgers | [`account`](/api/account) | get-cash-box-ledger-list |
| GET /cashs/user-map | [`account`](/api/account) | get-cash-user-map-list |
| DELETE /cashs/`{id}` | [`account`](/api/account) | delete-cash-box |
| PUT /cashs/`{id}` | [`account`](/api/account) | update-cash-box |
| POST /cashs/`{id}`/ledgers | [`account`](/api/account) | create-cash-box-ledger |
| POST /cashs/`{id}`/user-map | [`account`](/api/account) | create-cash-box-user-map |
| POST /customer-blockeds/account-blockeds/`{accountBlockedId}`/transactions | [`account`](/api/account) | create-account-blocked-transaction |
| POST /customer-blockeds/accounts | [`account`](/api/account) | add-blocked-to-account |
| POST /customer-blockeds/amounts | [`account`](/api/account) | add-blocked-to-amount |
| GET /customer-blockeds/by-account-id/`{accountId}`/summary | [`account`](/api/account) | get-account-blocked-summary |
| POST /customer-blockeds/customers | [`account`](/api/account) | add-blocked-to-customer |
| PUT /customer-blockeds/`{id}`/account-blockeds/`{accountBlockedId}`/partial-unblocked | [`account`](/api/account) | partial-unblock-account-blocked |
| DELETE /customer-blockeds/`{id}`/account-blockeds/`{accountBlockedId}`/unblocked | [`account`](/api/account) | delete-account-blocked |
| PUT /customer-blockeds/`{id}`/unblock | [`account`](/api/account) | unblock-customer-blocked |
| POST /denomination-transactions | [`account`](/api/account) | create-denomination-transaction |
| POST /denominations | [`account`](/api/account) | create-denomination |
| DELETE /denominations/`{id}` | [`account`](/api/account) | delete-denomination |
| PUT /denominations/`{id}` | [`account`](/api/account) | update-denomination |
| POST /execute-distraint-collection | [`account`](/api/account) | execute-distraint-collection |
| POST /generate-iban/`{iban}` | [`account`](/api/account) | generate-iban |
| POST /key-formats/by-code/`{code}`/generate | [`account`](/api/account) | account-generate-key |
| POST /localizations | [`account`](/api/account) | account-create-localization |
| DELETE /localizations/`{id}` | [`account`](/api/account) | account-delete-localization |
| PUT /localizations/`{id}` | [`account`](/api/account) | account-update-localization |
| POST /matrix | [`account`](/api/account) | account-create-matrix |
| DELETE /matrix/`{id}` | [`account`](/api/account) | account-delete-matrix |
| PUT /matrix/`{id}` | [`account`](/api/account) | account-update-matrix |
| POST /matrix/`{id}`/columns | [`account`](/api/account) | account-create-matrix-column |
| POST /matrix/`{id}`/results | [`account`](/api/account) | account-create-matrix-result |
| POST /parameters | [`account`](/api/account) | account-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`account`](/api/account) | account-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`account`](/api/account) | account-delete-parameter |
| PUT /parameters/`{id}` | [`account`](/api/account) | account-update-parameter |
| POST /parameters/`{id}`/values | [`account`](/api/account) | account-create-parameter-value |
| POST /accounting-engine | [`accounting`](/api/accounting) | trigger-accounting-engine |
| GET /accounting-entries | [`accounting`](/api/accounting) | get-accounting-entry-list |
| POST /accounting-entries | [`accounting`](/api/accounting) | create-accounting-entry |
| GET /accounting-entries/`{id}` | [`accounting`](/api/accounting) | get-accounting-entry-with-detail-by-id |
| POST /accounting-entries/`{id}`/reverse | [`accounting`](/api/accounting) | reverse-accounting-entry |
| POST /accounting-entry-definitions | [`accounting`](/api/accounting) | create-accounting-entry-definition |
| PUT /accounting-entry-definitions/`{id}` | [`accounting`](/api/accounting) | update-accounting-entry-definition |
| POST /accounting-entry-definitions/`{id}`/conditions | [`accounting`](/api/accounting) | create-accounting-entry-condition |
| DELETE /accounting-entry-definitions/`{id}`/conditions/`{conditionId}` | [`accounting`](/api/accounting) | delete-accounting-entry-condition |
| PUT /accounting-entry-definitions/`{id}`/conditions/`{conditionId}` | [`accounting`](/api/accounting) | update-accounting-entry-condition |
| POST /accounting-entry-definitions/`{id}`/details | [`accounting`](/api/accounting) | create-accounting-entry-definition-detail |
| PUT /accounting-entry-definitions/`{id}`/details | [`accounting`](/api/accounting) | update-accounting-entry-definition-detail |
| DELETE /accounting-entry-definitions/`{id}`/details/`{detailId}` | [`accounting`](/api/accounting) | delete-accounting-entry-definition-detail |
| GET /balances/by-account-list | [`accounting`](/api/accounting) | get-balance-by-account-list |
| POST /batch-accounting-entry-files | [`accounting`](/api/accounting) | create-batch-accounting-entry-file |
| PUT /batch-accounting-entry-files/`{id}` | [`accounting`](/api/accounting) | process-batch-accounting-entry-file |
| POST /daily-balances | [`accounting`](/api/accounting) | create-daily-balance |
| PUT /daily-balances | [`accounting`](/api/accounting) | update-daily-balance |
| POST /financial-statement-templates | [`accounting`](/api/accounting) | create-statement-template |
| DELETE /financial-statement-templates/`{id}` | [`accounting`](/api/accounting) | delete-statement-template |
| GET /financial-statement-templates/`{id}` | [`accounting`](/api/accounting) | get-statement-template-by-id |
| PUT /financial-statement-templates/`{id}` | [`accounting`](/api/accounting) | update-statement-template |
| GET /financial-statement-templates/`{id}`/items | [`accounting`](/api/accounting) | get-statement-template-item-and-details-by-template-id |
| POST /financial-statement-templates/`{id}`/items | [`accounting`](/api/accounting) | create-statement-template-item |
| DELETE /financial-statement-templates/`{id}`/items/`{financialStatementTemplateItemId}` | [`accounting`](/api/accounting) | delete-statement-template-item |
| POST /financial-statement-templates/`{id}`/items/`{financialStatementTemplateItemId}` | [`accounting`](/api/accounting) | create-statement-template-item-detail |
| PUT /financial-statement-templates/`{id}`/items/`{financialStatementTemplateItemId}` | [`accounting`](/api/accounting) | update-statement-template-item |
| DELETE /financial-statement-templates/`{id}`/items/`{financialStatementTemplateItemId}`/details/`{financialStatementTemplateDetailId}` | [`accounting`](/api/accounting) | delete-statement-template-item-detail |
| PUT /financial-statement-templates/`{id}`/items/`{financialStatementTemplateItemId}`/details/`{financialStatementTemplateDetailId}` | [`accounting`](/api/accounting) | update-statement-template-item-detail |
| POST /financial-statements/calculate | [`accounting`](/api/accounting) | calculate-financial-statement |
| POST /financial-transactions | [`accounting`](/api/accounting) | create-financial-transaction |
| DELETE /financial-transactions/`{id}` | [`accounting`](/api/accounting) | delete-financial-transaction |
| GET /financial-transactions/`{id}` | [`accounting`](/api/accounting) | get-financial-transaction-by-id |
| PUT /financial-transactions/`{id}` | [`accounting`](/api/accounting) | update-financial-transaction |
| POST /fiscal-years | [`accounting`](/api/accounting) | create-fiscal-year |
| DELETE /fiscal-years/`{id}` | [`accounting`](/api/accounting) | delete-fiscal-year |
| GET /fiscal-years/`{id}` | [`accounting`](/api/accounting) | get-fiscal-year-by-id |
| PUT /fiscal-years/`{id}` | [`accounting`](/api/accounting) | update-fiscal-year |
| DELETE /fiscal-years/`{id}`/periods | [`accounting`](/api/accounting) | delete-fiscal-period |
| POST /fiscal-years/`{id}`/periods | [`accounting`](/api/accounting) | create-fiscal-period |
| PUT /fiscal-years/`{id}`/periods/`{periodId}` | [`accounting`](/api/accounting) | update-fiscal-period-status |
| PUT /fiscal-years/`{id}`/periods/`{periodId}`/organizations/by-organization-code/`{organizationCode}` | [`accounting`](/api/accounting) | update-organization-fiscal-period-status |
| DELETE /gl-code-formats | [`accounting`](/api/accounting) | delete-gLCode-format |
| GET /gl-code-formats | [`accounting`](/api/accounting) | get-gLCode-format-list |
| POST /gl-code-formats | [`accounting`](/api/accounting) | create-glCode-format |
| PUT /gl-code-formats | [`accounting`](/api/accounting) | update-gLCode-format |
| POST /gl-code-sections | [`accounting`](/api/accounting) | create-gLCode-section |
| DELETE /gl-code-sections/`{id}` | [`accounting`](/api/accounting) | delete-gLCode-section |
| GET /gl-code-sections/`{id}` | [`accounting`](/api/accounting) | get-gLCode-section-by-id |
| PUT /gl-code-sections/`{id}` | [`accounting`](/api/accounting) | update-gLCode-section |
| GET /gl-code-sections/`{id}`/values | [`accounting`](/api/accounting) | get-gLCode-section-value-list |
| POST /gl-code-sections/`{id}`/values | [`accounting`](/api/accounting) | create-gLCode-section-value |
| DELETE /gl-code-sections/`{id}`/values/`{valueId}` | [`accounting`](/api/accounting) | delete-gLCode-section-value |
| PUT /gl-code-sections/`{id}`/values/`{valueId}` | [`accounting`](/api/accounting) | update-gLCode-section-value |
| GET /ledger-balances/by-account-number/`{accountNumber}` | [`accounting`](/api/accounting) | get-ledger-balance-by-account-number |
| GET /ledger-balances/details | [`accounting`](/api/accounting) | get-ledger-balance-detail |
| POST /ledger-code-matrix | [`accounting`](/api/accounting) | create-ledger-matrix |
| DELETE /ledger-code-matrix/`{id}` | [`accounting`](/api/accounting) | delete-ledger-matrix |
| GET /ledger-code-matrix/`{id}` | [`accounting`](/api/accounting) | get-ledger-matrix-by-id |
| PUT /ledger-code-matrix/`{id}` | [`accounting`](/api/accounting) | update-ledger-matrix |
| GET /ledger-code-matrix/`{id}`/by-field-id/`{fieldId}` | [`accounting`](/api/accounting) | get-ledger-matrix-field-by-id |
| GET /ledger-code-matrix/`{id}`/fields | [`accounting`](/api/accounting) | get-ledger-matrix-field-by-ledger-matrix-id |
| POST /ledger-code-matrix/`{id}`/fields | [`accounting`](/api/accounting) | create-ledger-matrix-field |
| DELETE /ledger-code-matrix/`{id}`/fields/`{fieldId}` | [`accounting`](/api/accounting) | delete-ledger-matrix-field |
| GET /ledger-code-matrix/`{id}`/fields/`{fieldId}` | [`accounting`](/api/accounting) | get-ledger-matrix-value-list |
| PUT /ledger-code-matrix/`{id}`/fields/`{fieldId}` | [`accounting`](/api/accounting) | update-ledger-matrix-field |
| POST /ledger-code-matrix/`{id}`/fields/`{fieldId}`/values | [`accounting`](/api/accounting) | create-ledger-matrix-value |
| DELETE /ledger-code-matrix/`{id}`/fields/`{fieldId}`/values/`{valueId}` | [`accounting`](/api/accounting) | delete-ledger-matrix-value |
| PUT /ledger-code-matrix/`{id}`/fields/`{fieldId}`/values/`{valueId}` | [`accounting`](/api/accounting) | update-ledger-matrix-value |
| DELETE /ledger-level-formats | [`accounting`](/api/accounting) | delete-ledger-level-format |
| GET /ledger-level-formats | [`accounting`](/api/accounting) | get-ledger-level-format-list |
| POST /ledger-level-formats | [`accounting`](/api/accounting) | create-ledger-level-format |
| PUT /ledger-level-formats | [`accounting`](/api/accounting) | update-ledger-level-format |
| POST /ledgers | [`accounting`](/api/accounting) | create-ledger |
| GET /ledgers/by-ledger-code/`{ledgerCode}` | [`accounting`](/api/accounting) | get-ledger-by-ledger-code |
| DELETE /ledgers/`{id}` | [`accounting`](/api/accounting) | delete-ledger-by-id |
| GET /ledgers/`{id}` | [`accounting`](/api/accounting) | get-ledger-by-id |
| PUT /ledgers/`{id}` | [`accounting`](/api/accounting) | update-ledger |
| POST /localizations | [`accounting`](/api/accounting) | accounting-create-localization |
| DELETE /localizations/`{id}` | [`accounting`](/api/accounting) | accounting-delete-localization |
| PUT /localizations/`{id}` | [`accounting`](/api/accounting) | accounting-update-localization |
| POST /parameters | [`accounting`](/api/accounting) | accounting-create-parameter |
| DELETE /parameters/`{id}` | [`accounting`](/api/accounting) | accounting-delete-parameter |
| PUT /parameters/`{id}` | [`accounting`](/api/accounting) | accounting-update-parameter |
| POST /parameters/`{id}`/values | [`accounting`](/api/accounting) | accounting-create-parameter-value |
| POST /position-accounts | [`accounting`](/api/accounting) | create-position-account |
| DELETE /position-accounts/`{id}` | [`accounting`](/api/accounting) | delete-position-account |
| PUT /position-accounts/`{id}` | [`accounting`](/api/accounting) | update-position-account |
| PUT /previous-entries | [`accounting`](/api/accounting) | update-previous-entry |
| GET /calculations | [`accrual`](/api/accrual) | get-accrual-calculation-list |
| POST /calculations | [`accrual`](/api/accrual) | calculate-accrual |
| POST /calculations/accrued/by-product-id/`{accrualProductId}` | [`accrual`](/api/accrual) | calculate-accrued-amount-by-accrual-product-id |
| POST /calculations/accrued/by-transaction-id/`{accrualTransactionId}` | [`accrual`](/api/accrual) | calculate-accrued-amount-by-accrual-transaction-id |
| POST /calculations/by-product-id/`{accrualProductId}` | [`accrual`](/api/accrual) | calculate-accrual-by-accrual-product-id |
| GET /calculations/by-product-transaction-id/`{productTransactionId}` | [`accrual`](/api/accrual) | get-accrual-calculation-by-product-transaction-id |
| POST /calculations/by-transaction-id/`{accrualTransactionId}` | [`accrual`](/api/accrual) | calculate-accrual-by-accrual-transaction-id |
| PUT /calculations/by-transaction-id/`{accrualTransactionId}` | [`accrual`](/api/accrual) | update-accrual-calculation-by-transaction-id |
| GET /calculations/by-transaction-id/`{accrualTransactionId}`/accounting-entry | [`accrual`](/api/accrual) | get-accrual-last-accounting-entry-by-transaction-id |
| POST /execute/accrual-rediscount | [`accrual`](/api/accrual) | execute-accrual-rediscount-and-complete-accounting-process |
| POST /execute/accrued-calculation | [`accrual`](/api/accrual) | execute-accrued-calculation-and-complete-accounting-process |
| POST /localizations | [`accrual`](/api/accrual) | accrual-create-localization |
| DELETE /localizations/`{id}` | [`accrual`](/api/accrual) | accrual-delete-localization |
| PUT /localizations/`{id}` | [`accrual`](/api/accrual) | accrual-update-localization |
| POST /parameters | [`accrual`](/api/accrual) | accrual-create-parameter |
| DELETE /parameters/`{id}` | [`accrual`](/api/accrual) | accrual-delete-parameter |
| PUT /parameters/`{id}` | [`accrual`](/api/accrual) | accrual-update-parameter |
| POST /parameters/`{id}`/ | [`accrual`](/api/accrual) | accrual-create-parameter-value |
| GET /products | [`accrual`](/api/accrual) | get-accrual-product-list |
| POST /products | [`accrual`](/api/accrual) | create-accrual-product |
| GET /products/`{id}` | [`accrual`](/api/accrual) | get-accrual-product-by-id |
| PUT /products/`{id}` | [`accrual`](/api/accrual) | update-accrual-product |
| POST /products/`{id}`/fields | [`accrual`](/api/accrual) | create-accrual-product-field |
| DELETE /products/`{id}`/fields/`{fieldId}` | [`accrual`](/api/accrual) | delete-accrual-product-field |
| PUT /products/`{id}`/fields/`{fieldId}` | [`accrual`](/api/accrual) | update-accrual-product-field |
| GET /products/`{id}`/formulas | [`accrual`](/api/accrual) | get-accrual-product-formula-by-id |
| POST /products/`{id}`/formulas | [`accrual`](/api/accrual) | create-accrual-product-formula |
| PUT /products/`{id}`/formulas/save | [`accrual`](/api/accrual) | save-accrual-product-formula |
| DELETE /products/`{id}`/formulas/`{accrualProductFormulaId}` | [`accrual`](/api/accrual) | delete-accrual-product-formula |
| PUT /products/`{id}`/formulas/`{accrualProductFormulaId}` | [`accrual`](/api/accrual) | update-accrual-product-formula |
| GET /transactions | [`accrual`](/api/accrual) | get-accrual-transaction-list |
| POST /transactions | [`accrual`](/api/accrual) | create-accrual-transaction |
| GET /transactions/`{id}` | [`accrual`](/api/accrual) | get-accrual-transaction-by-id |
| PUT /transactions/`{id}` | [`accrual`](/api/accrual) | update-accrual-transaction |
| GET /transactions/`{id}`/cash-flows | [`accrual`](/api/accrual) | get-accrual-transaction-cash-flow |
| PUT /transactions/`{id}`/cash-flows/`{cashFlowId}` | [`accrual`](/api/accrual) | update-accrual-cash-flow |
| PUT /transactions/`{id}`/cash-flows/`{cashFlowId}`/entry | [`accrual`](/api/accrual) | update-accrual-cash-flow-entry |
| PUT /transactions/`{id}`/cash-flows/`{cashFlowId}`/status | [`accrual`](/api/accrual) | update-accrual-cash-flow-status |
| PUT /transactions/`{id}`/cash-flows/`{cashFlowId}`/status-multiple | [`accrual`](/api/accrual) | update-accrual-cash-flow-status-multiple |
| PUT /transactions/`{id}`/status | [`accrual`](/api/accrual) | update-accrual-transaction-status |
| GET /assignments | [`allotment`](/api/allotment) | get-allotment-assignment-list |
| POST /assignments | [`allotment`](/api/allotment) | create-allotment-assignment |
| GET /assignments/by-customer-id/`{customerId}` | [`allotment`](/api/allotment) | get-allotment-assignment-by-customer-id |
| GET /assignments/by-customer-id/`{customerId}`/products/by-allotment-product/`{allotmentProductId}` | [`allotment`](/api/allotment) | get-customer-allotment-assignment-by-product-id |
| GET /assignments/`{id}` | [`allotment`](/api/allotment) | get-allotment-assignment-by-id |
| PUT /assignments/`{id}` | [`allotment`](/api/allotment) | update-allotment-assignment |
| POST /assignments/`{id}`/collaterals | [`allotment`](/api/allotment) | create-allotment-assignment-collateral |
| POST /assignments/`{id}`/comments | [`allotment`](/api/allotment) | create-allotment-assignment-comment |
| DELETE /assignments/`{id}`/comments/`{assignmentCommentId}` | [`allotment`](/api/allotment) | delete-allotment-assignment-comment |
| PUT /assignments/`{id}`/comments/`{assignmentCommentId}` | [`allotment`](/api/allotment) | update-allotment-assignment-comment |
| POST /assignments/`{id}`/details | [`allotment`](/api/allotment) | create-allotment-assignment-detail |
| PUT /assignments/`{id}`/details/`{allotmentAssignmentDetailId}` | [`allotment`](/api/allotment) | update-allotment-assignment-detail |
| PUT /assignments/`{id}`/product-details | [`allotment`](/api/allotment) | update-allotment-assignment-with-product-detail |
| POST /assignments/`{id}`/products | [`allotment`](/api/allotment) | create-allotment-assignment-product |
| PUT /assignments/`{id}`/products/`{allotmentAssignmentProductId}` | [`allotment`](/api/allotment) | update-allotment-assignment-product |
| POST /assignments/`{id}`/products/`{allotmentAssignmentProductId}`/collaterals | [`allotment`](/api/allotment) | create-allotment-assignment-product-collateral |
| PUT /assignments/`{id}`/status | [`allotment`](/api/allotment) | update-allotment-assignment-status |
| PUT /assignments/`{id}`/succ-vid-call-date | [`allotment`](/api/allotment) | update-allotment-assignment-successful-vid-call-date |
| GET /corporate-assignment-requests/`{id}`/decision | [`allotment`](/api/allotment) | get-corporate-assignment-request-decision-list |
| POST /corporate-assignment-requests/`{id}`/decision | [`allotment`](/api/allotment) | create-corporate-assignment-request-decision |
| PUT /corporate-assignment-requests/`{id}`/process-status | [`allotment`](/api/allotment) | update-corporate-assignment-request-process-status |
| PUT /corporate-assignment-requests/`{id}`/status | [`allotment`](/api/allotment) | update-corporate-assignment-request-status |
| POST /corporate-assignments | [`allotment`](/api/allotment) | create-corporate-assignment |
| GET /corporate-assignments/by-customer-id/`{customerId}` | [`allotment`](/api/allotment) | get-corporate-assignment-by-customer-id |
| POST /corporate-assignments/from-request | [`allotment`](/api/allotment) | create-corporate-assignment-from-request |
| POST /corporate-assignments/`{id}`/comment | [`allotment`](/api/allotment) | create-corporate-comment |
| DELETE /corporate-assignments/`{id}`/comment/`{commentId}` | [`allotment`](/api/allotment) | delete-corporate-comment |
| PUT /corporate-assignments/`{id}`/comment/`{commentId}` | [`allotment`](/api/allotment) | update-corporate-comment |
| POST /corporate-assignments/`{id}`/committee-signatory | [`allotment`](/api/allotment) | create-corporate-committee-signatory |
| DELETE /corporate-assignments/`{id}`/committee-signatory/`{corporateCommitteeSignatoryId}` | [`allotment`](/api/allotment) | delete-corporate-committee-signatory |
| POST /corporate-assignments/`{id}`/group-limit | [`allotment`](/api/allotment) | create-corporate-group-limit |
| PUT /corporate-assignments/`{id}`/group-limit/`{limitId}` | [`allotment`](/api/allotment) | update-corporate-group-limit |
| POST /corporate-assignments/`{id}`/guarantor-info | [`allotment`](/api/allotment) | create-corporate-guarantor-info |
| DELETE /corporate-assignments/`{id}`/guarantor-info/`{guarantorInfoId}` | [`allotment`](/api/allotment) | delete-corporate-guarantor-info |
| PUT /corporate-assignments/`{id}`/guarantor-info/`{guarantorInfoId}` | [`allotment`](/api/allotment) | update-corporate-guarantor-info |
| POST /corporate-assignments/`{id}`/product-group-limit/`{groupLimitId}`/product-limit | [`allotment`](/api/allotment) | create-corporate-product-limit |
| DELETE /corporate-assignments/`{id}`/product-group-limit/`{groupLimitId}`/product-limit/`{limitId}` | [`allotment`](/api/allotment) | delete-corporate-product-limit |
| PUT /corporate-assignments/`{id}`/product-group-limit/`{groupLimitId}`/product-limit/`{limitId}` | [`allotment`](/api/allotment) | update-corporate-product-limit |
| POST /corporate-assignments/`{id}`/special-condition | [`allotment`](/api/allotment) | create-corporate-special-condition |
| DELETE /corporate-assignments/`{id}`/special-condition/`{specialConditionId}` | [`allotment`](/api/allotment) | delete-corporate-special-condition |
| POST /localizations | [`allotment`](/api/allotment) | allotment-create-localization |
| DELETE /localizations/`{id}` | [`allotment`](/api/allotment) | allotment-delete-localization |
| PUT /localizations/`{id}` | [`allotment`](/api/allotment) | allotment-update-localization |
| POST /parameters | [`allotment`](/api/allotment) | allotment-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`allotment`](/api/allotment) | allotment-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`allotment`](/api/allotment) | allotment-delete-parameter |
| PUT /parameters/`{id}` | [`allotment`](/api/allotment) | allotment-update-parameter |
| POST /parameters/`{id}`/values | [`allotment`](/api/allotment) | allotment-create-parameter-value |
| GET /products | [`allotment`](/api/allotment) | get-allotment-product-list |
| POST /products | [`allotment`](/api/allotment) | create-allotment-product |
| GET /products/by-account-product-id/`{accountProductId}` | [`allotment`](/api/allotment) | get-allotment-product-by-account-product-id |
| DELETE /products/`{id}` | [`allotment`](/api/allotment) | delete-allotment-product |
| GET /products/`{id}` | [`allotment`](/api/allotment) | get-allotment-product-by-id |
| PUT /products/`{id}` | [`allotment`](/api/allotment) | update-allotment-product |
| POST /products/`{id}`/fields | [`allotment`](/api/allotment) | create-allotment-product-field |
| DELETE /products/`{id}`/fields/`{fieldId}` | [`allotment`](/api/allotment) | delete-allotment-product-field |
| PUT /products/`{id}`/fields/`{fieldId}` | [`allotment`](/api/allotment) | update-allotment-product-field |
| POST /queries | [`allotment`](/api/allotment) | create-allotment-query |
| POST /localizations | [`audit`](/api/audit) | audit-create-localization |
| DELETE /localizations/`{id}` | [`audit`](/api/audit) | audit-delete-localization |
| PUT /localizations/`{id}` | [`audit`](/api/audit) | audit-update-localization |
| POST /parameters | [`audit`](/api/audit) | audit-create-parameter |
| DELETE /parameters/`{id}` | [`audit`](/api/audit) | audit-delete-parameter |
| PUT /parameters/`{id}` | [`audit`](/api/audit) | audit-update-parameter |
| POST /parameters/`{id}`/ | [`audit`](/api/audit) | audit-create-parameter-value |
| GET /services/`{id}` | [`aurax-bff`](/api/aurax-bff) | get-service-by-id |
| POST /action-groups | [`aurax-management`](/api/aurax-management) | aurax-management-create-action-group |
| DELETE /action-groups/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-action-group |
| GET /action-groups/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-get-action-group-by-id |
| PUT /action-groups/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-action-group |
| GET /actions | [`aurax-management`](/api/aurax-management) | aurax-management-get-action-definition-list |
| POST /actions | [`aurax-management`](/api/aurax-management) | aurax-management-create-action-definition |
| DELETE /actions/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-action-definition |
| GET /actions/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-get-action-definition-by-id |
| PUT /actions/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-action-definition |
| POST /forms | [`aurax-management`](/api/aurax-management) | aurax-management-create-form-definition |
| DELETE /forms/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-form-definition |
| GET /forms/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-get-form-definition-by-id |
| PUT /forms/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-form-definition |
| POST /localizations | [`aurax-management`](/api/aurax-management) | aurax-management-create-localization |
| DELETE /localizations/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-localization |
| PUT /localizations/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-localization |
| POST /menus | [`aurax-management`](/api/aurax-management) | aurax-management-create-menu-definition |
| DELETE /menus/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-menu-definition |
| GET /menus/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-get-menu-definition-by-id |
| PUT /menus/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-menu-definition |
| POST /parameters | [`aurax-management`](/api/aurax-management) | aurax-management-create-parameter |
| DELETE /parameters/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-delete-parameter |
| PUT /parameters/`{id}` | [`aurax-management`](/api/aurax-management) | aurax-management-update-parameter |
| POST /parameters/`{id}`/values | [`aurax-management`](/api/aurax-management) | aurax-management-create-parameter-value |
| GET /customer-application/parameters/`{parameterCode}`/values/`{parameterValue}`/fields/`{parameterFieldCode}` | [`bnpl-management`](/api/bnpl-management) | get-parameterized-person |
| POST /localizations | [`bnpl-management`](/api/bnpl-management) | bnpl-management-create-localization |
| DELETE /localizations/`{id}` | [`bnpl-management`](/api/bnpl-management) | bnpl-management-delete-localization |
| PUT /localizations/`{id}` | [`bnpl-management`](/api/bnpl-management) | bnpl-management-update-localization |
| POST /parameters | [`bnpl-management`](/api/bnpl-management) | bnpl-management-create-parameter |
| DELETE /parameters/`{id}` | [`bnpl-management`](/api/bnpl-management) | bnpl-management-delete-parameter |
| PUT /parameters/`{id}` | [`bnpl-management`](/api/bnpl-management) | bnpl-management-update-parameter |
| POST /parameters/`{id}`/values | [`bnpl-management`](/api/bnpl-management) | bnpl-management-create-parameter-value |
| POST /bpmn-editor/elements | [`bpm`](/api/bpm) | split-bpmn-resource-to-element-list |
| POST /compensating-transactions/resolve | [`bpm`](/api/bpm) | resolve-correlation |
| GET /decision-definitions/not-deployed | [`bpm`](/api/bpm) | get-decision-definition-not-deployed-list |
| POST /deploy-decision/by-decision-definition-id/`{decisionDefinitionId}` | [`bpm`](/api/bpm) | deploy-decision-by-decision-id |
| POST /deploy-process/by-process-definition-id/`{processDefinitionId}` | [`bpm`](/api/bpm) | deploy-process-by-process-definition-id |
| POST /localizations | [`bpm`](/api/bpm) | bpm-create-localization |
| DELETE /localizations/`{id}` | [`bpm`](/api/bpm) | bpm-delete-localization |
| PUT /localizations/`{id}` | [`bpm`](/api/bpm) | bpm-update-localization |
| POST /parameters | [`bpm`](/api/bpm) | bpm-create-parameter |
| DELETE /parameters/`{id}` | [`bpm`](/api/bpm) | bpm-delete-parameter |
| PUT /parameters/`{id}` | [`bpm`](/api/bpm) | bpm-update-parameter |
| POST /parameters/`{id}`/values | [`bpm`](/api/bpm) | bpm-create-parameter-value |
| GET /process-definitions | [`bpm`](/api/bpm) | get-process-definition-list |
| POST /process-definitions | [`bpm`](/api/bpm) | create-process-definition |
| GET /process-definitions/not-deployed | [`bpm`](/api/bpm) | get-process-definition-not-deployed-list |
| GET /process-definitions/`{id}` | [`bpm`](/api/bpm) | get-process-definition-by-id |
| PUT /process-definitions/`{id}` | [`bpm`](/api/bpm) | update-process-definition |
| GET /process-definitions/`{id}`/details | [`bpm`](/api/bpm) | get-process-definition-detail-list |
| POST /process-definitions/`{id}`/details | [`bpm`](/api/bpm) | create-process-definition-detail |
| PUT /process-definitions/`{id}`/details/`{processDefinitionDetailId}` | [`bpm`](/api/bpm) | update-process-definition-detail |
| POST /process-definitions/`{id}`/details/`{processDefinitionDetailId}`/elements/details | [`bpm`](/api/bpm) | create-process-element-with-details |
| GET /process-definitions/`{id}`/user-tasks | [`bpm`](/api/bpm) | get-process-user-task-list |
| POST /process-definitions/`{id}`/user-tasks | [`bpm`](/api/bpm) | create-process-user-task |
| PUT /process-definitions/`{id}`/user-tasks/change-statuses | [`bpm`](/api/bpm) | update-user-tasks-status-except-ids |
| PUT /process-definitions/`{id}`/user-tasks/`{processUserTaskId}` | [`bpm`](/api/bpm) | update-process-user-task |
| POST /process-definitions/`{id}`/user-tasks/`{processUserTaskId}`/action-maps | [`bpm`](/api/bpm) | create-process-user-task-action-map |
| GET /process-instances | [`bpm`](/api/bpm) | get-bpm-process-instance-list |
| POST /messages/`{tenantCode}` | [`broadcast`](/api/broadcast) | add-broadcast-message |
| POST /calendar-dimensions | [`business-core`](/api/business-core) | create-calendar-dimension |
| DELETE /calendar-dimensions/`{id}` | [`business-core`](/api/business-core) | delete-calendar-dimension |
| GET /calendar-dimensions/`{id}` | [`business-core`](/api/business-core) | get-calendar-dimension-by-id |
| PUT /calendar-dimensions/`{id}` | [`business-core`](/api/business-core) | update-calendar-dimension |
| GET /calendars | [`business-core`](/api/business-core) | get-calendar-list |
| POST /calendars | [`business-core`](/api/business-core) | create-calendar |
| GET /calendars/by-calendar-date/`{calendarDate}`/next-workday | [`business-core`](/api/business-core) | get-next-work-day-of-after-day |
| DELETE /calendars/`{id}` | [`business-core`](/api/business-core) | delete-calendar |
| GET /calendars/`{id}` | [`business-core`](/api/business-core) | get-calendar-by-id |
| PUT /calendars/`{id}` | [`business-core`](/api/business-core) | update-calendar |
| POST /committees | [`business-core`](/api/business-core) | create-committee |
| DELETE /committees/`{id}` | [`business-core`](/api/business-core) | delete-committee |
| PUT /committees/`{id}` | [`business-core`](/api/business-core) | update-committee |
| POST /committees/`{id}`/signatories | [`business-core`](/api/business-core) | create-committee-signatory |
| DELETE /committees/`{id}`/signatories/`{signatoryId}` | [`business-core`](/api/business-core) | delete-committee-signatory |
| POST /exchange-rates | [`business-core`](/api/business-core) | create-exchange-rate |
| POST /localizations | [`business-core`](/api/business-core) | business-core-create-localization |
| DELETE /localizations/`{id}` | [`business-core`](/api/business-core) | business-core-delete-localization |
| PUT /localizations/`{id}` | [`business-core`](/api/business-core) | business-core-update-localization |
| POST /otp-items | [`business-core`](/api/business-core) | create-otp-item |
| GET /otp-items/by-name/`{name}` | [`business-core`](/api/business-core) | get-otp-item-by-name |
| POST /otp-items/transactions/`{otpTransactionId}`/log | [`business-core`](/api/business-core) | create-otp-transaction-log |
| DELETE /otp-items/`{id}` | [`business-core`](/api/business-core) | delete-otp-item |
| GET /otp-items/`{id}` | [`business-core`](/api/business-core) | get-otp-item-by-id |
| PUT /otp-items/`{id}` | [`business-core`](/api/business-core) | update-otp-item |
| POST /otp-items/`{id}`/check-phone-has-pending-transaction | [`business-core`](/api/business-core) | check-phone-has-pending-transaction |
| POST /otp-items/`{id}`/transactions | [`business-core`](/api/business-core) | create-otp-transaction |
| POST /parameters | [`business-core`](/api/business-core) | business-core-create-parameter |
| DELETE /parameters/`{id}` | [`business-core`](/api/business-core) | business-core-delete-parameter |
| PUT /parameters/`{id}` | [`business-core`](/api/business-core) | business-core-update-parameter |
| POST /parameters/`{id}`/values | [`business-core`](/api/business-core) | business-core-create-parameter-value |
| POST /partners | [`business-core`](/api/business-core) | create-partner |
| DELETE /partners/`{id}` | [`business-core`](/api/business-core) | delete-partner |
| PUT /partners/`{id}` | [`business-core`](/api/business-core) | update-partner |
| POST /slips/generate | [`business-core`](/api/business-core) | generate-slip |
| GET /taxes | [`business-core`](/api/business-core) | get-tax-list |
| POST /taxes | [`business-core`](/api/business-core) | create-tax-definition |
| DELETE /taxes/`{id}` | [`business-core`](/api/business-core) | delete-tax |
| GET /taxes/`{id}` | [`business-core`](/api/business-core) | get-tax-by-id |
| PUT /taxes/`{id}` | [`business-core`](/api/business-core) | update-tax-definition |
| GET /taxes/`{id}`/available-rate | [`business-core`](/api/business-core) | get-tax-available-rate |
| GET /taxes/`{id}`/rates | [`business-core`](/api/business-core) | get-tax-rate-list |
| POST /taxes/`{id}`/rates | [`business-core`](/api/business-core) | create-tax-rate |
| DELETE /taxes/`{id}`/rates/`{taxRateId}` | [`business-core`](/api/business-core) | delete-tax-rate |
| PUT /taxes/`{id}`/rates/`{taxRateId}`/validity-date | [`business-core`](/api/business-core) | update-tax-rate-validity-date |
| GET /transactions/by-transaction-id/`{transactionId}` | [`business-core`](/api/business-core) | get-otp-transaction-by-transaction-id |
| POST /customer-loan-campaigns/`{loanCampaingId}` | [`campaign-management`](/api/campaign-management) | create-customer-loan-campaign |
| POST /loan-campaigns | [`campaign-management`](/api/campaign-management) | create-loan-campaign |
| PUT /loan-campaigns/`{id}` | [`campaign-management`](/api/campaign-management) | update-loan-campaign |
| POST /collateral-types | [`collateral`](/api/collateral) | create-collateral-type |
| DELETE /collateral-types/`{id}` | [`collateral`](/api/collateral) | delete-collateral-type |
| PUT /collateral-types/`{id}` | [`collateral`](/api/collateral) | update-collateral-type |
| POST /collateral-types/`{id}`/fields | [`collateral`](/api/collateral) | create-collateral-type-field |
| DELETE /collateral-types/`{id}`/fields/`{fieldId}` | [`collateral`](/api/collateral) | delete-collateral-type-field |
| PUT /collateral-types/`{id}`/fields/`{fieldId}` | [`collateral`](/api/collateral) | update-collateral-type-field |
| GET /collaterals | [`collateral`](/api/collateral) | get-collateral-list |
| POST /collaterals | [`collateral`](/api/collateral) | create-collateral |
| GET /collaterals/usages/`{loanId}` | [`collateral`](/api/collateral) | get-collateral-usage-by-loan-id |
| GET /collaterals/`{id}` | [`collateral`](/api/collateral) | get-collateral-by-id |
| PUT /collaterals/`{id}` | [`collateral`](/api/collateral) | update-collateral |
| PUT /collaterals/`{id}`/expiry-date | [`collateral`](/api/collateral) | update-customer-collateral-expiry-date |
| POST /collaterals/`{id}`/field-values | [`collateral`](/api/collateral) | create-collateral-field-value |
| DELETE /collaterals/`{id}`/field-values/`{fieldValueId}` | [`collateral`](/api/collateral) | delete-collateral-field-value |
| PUT /collaterals/`{id}`/field-values/`{fieldValueId}` | [`collateral`](/api/collateral) | update-collateral-field-value |
| POST /collaterals/`{id}`/pledges | [`collateral`](/api/collateral) | create-pledge |
| DELETE /collaterals/`{id}`/pledges/`{pledgeId}` | [`collateral`](/api/collateral) | delete-pledge |
| PUT /collaterals/`{id}`/pledges/`{pledgeId}` | [`collateral`](/api/collateral) | update-pledge |
| POST /collaterals/`{id}`/usages | [`collateral`](/api/collateral) | create-customer-collateral-usage |
| PUT /collaterals/`{id}`/usages/`{collateralUsageId}` | [`collateral`](/api/collateral) | update-customer-collateral-usage |
| POST /localizations | [`collateral`](/api/collateral) | collateral-create-localization |
| DELETE /localizations/`{id}` | [`collateral`](/api/collateral) | collateral-delete-localization |
| PUT /localizations/`{id}` | [`collateral`](/api/collateral) | collateral-update-localization |
| POST /parameters | [`collateral`](/api/collateral) | collateral-create-parameter |
| DELETE /parameters/`{id}` | [`collateral`](/api/collateral) | collateral-delete-parameter |
| PUT /parameters/`{id}` | [`collateral`](/api/collateral) | collateral-update-parameter |
| POST /parameters/`{id}`/values | [`collateral`](/api/collateral) | collateral-create-parameter-value |
| GET /bnpl-customer-collection-history | [`core`](/api/core) | bnpl-customer-collection-history |
| GET /channels | [`core`](/api/core) | get-channel-definition-list |
| POST /channels | [`core`](/api/core) | create-channel |
| POST /channels/set-new-date | [`core`](/api/core) | set-tenant-channels-new-date |
| DELETE /channels/`{id}` | [`core`](/api/core) | delete-channel |
| PUT /channels/`{id}` | [`core`](/api/core) | update-channel |
| GET /clients/`{clientId}`/resources/by-name/`{resourceName}`/authorities | [`core`](/api/core) | get-resource-authority-list |
| GET /configs | [`core`](/api/core) | get-config-list |
| POST /configs | [`core`](/api/core) | create-config |
| DELETE /configs/`{id}` | [`core`](/api/core) | delete-config |
| GET /configs/`{id}` | [`core`](/api/core) | get-config-by-id |
| PUT /configs/`{id}` | [`core`](/api/core) | update-config-by-id |
| GET /countries/address-types | [`core`](/api/core) | get-country-address-type-list |
| DELETE /countries/address-types/address-items | [`core`](/api/core) | truncate-country-address-item |
| GET /countries/address-types/address-items | [`core`](/api/core) | get-country-address-item-list |
| GET /countries/address-types/`{id}`/usage | [`core`](/api/core) | has-country-address-type-usage |
| POST /countries/`{id}`/address-types | [`core`](/api/core) | create-country-address-type |
| DELETE /countries/`{id}`/address-types/`{addressTypeId}` | [`core`](/api/core) | delete-country-address-type |
| GET /countries/`{id}`/address-types/`{addressTypeId}` | [`core`](/api/core) | get-country-address-type-by-id |
| PUT /countries/`{id}`/address-types/`{addressTypeId}` | [`core`](/api/core) | update-country-address-type |
| POST /countries/`{id}`/address-types/`{countryAddressTypeId}`/items | [`core`](/api/core) | create-country-address-item |
| GET /currencies | [`core`](/api/core) | get-currency-list |
| GET /currencies/by-numeric/`{numeric}` | [`core`](/api/core) | get-currency-by-numeric |
| GET /currencies/`{id}` | [`core`](/api/core) | get-currency-by-id |
| GET /domains | [`core`](/api/core) | get-domain-definition-list |
| POST /events | [`core`](/api/core) | create-event-definition |
| PUT /events/`{id}` | [`core`](/api/core) | update-event-definition |
| POST /events/`{id}`/requests | [`core`](/api/core) | create-event-definition-request |
| POST /fields | [`core`](/api/core) | create-field-definition |
| GET /fields/`{id}` | [`core`](/api/core) | get-field-definition-by-id |
| POST /formulas | [`core`](/api/core) | create-formula-definition |
| GET /formulas/`{id}` | [`core`](/api/core) | get-formula-definition-by-id |
| PUT /formulas/`{id}` | [`core`](/api/core) | update-formula-definition |
| POST /formulas/`{id}`/requests | [`core`](/api/core) | create-formula-definition-request |
| GET /get-customer-loan-collection-list-for-accrual-by-loan-id | [`core`](/api/core) | get-customer-loan-collection-list-for-accrual-by-loan-id |
| GET /get-customer-loan-for-dept-calculate-by-customer-id | [`core`](/api/core) | get-customer-loan-for-dept-calculate-by-customer-id |
| GET /get-first-unpaid-installment-id-and-delay-penalty-id | [`core`](/api/core) | get-first-unpaid-installment-id-and-delay-penalty-id |
| GET /get-first-unpaid-installment-id-and-delay-penalty-id-by-customer-id | [`core`](/api/core) | get-first-unpaid-installment-id-and-delay-penalty-id-by-customer-id |
| GET /get-installment-list-for-daily-calculate-delay-penalty | [`core`](/api/core) | get-installment-list-for-daily-calculate-delay-penalty |
| GET /get-loan-list-for-provision-query | [`core`](/api/core) | get-loan-list-for-provision-query |
| POST /localizations | [`core`](/api/core) | core-create-localization |
| DELETE /localizations/`{id}` | [`core`](/api/core) | core-delete-localization |
| PUT /localizations/`{id}` | [`core`](/api/core) | core-update-localization |
| GET /organizations | [`core`](/api/core) | get-organization-list |
| POST /parameters | [`core`](/api/core) | core-create-parameter |
| GET /parameters/by-code/`{code}`/default-value | [`core`](/api/core) | core-get-parameter-default-value-by-parameter-code |
| DELETE /parameters/`{id}` | [`core`](/api/core) | core-delete-parameter |
| PUT /parameters/`{id}` | [`core`](/api/core) | core-update-parameter |
| POST /parameters/`{id}`/fields | [`core`](/api/core) | core-create-parameter-field |
| POST /parameters/`{id}`/values | [`core`](/api/core) | core-create-parameter-value |
| POST /password-policies/validate-password | [`core`](/api/core) | validate-password |
| POST /potential-users | [`core`](/api/core) | create-potential-user |
| PUT /potential-users/by-citizen-id/`{citizenId}` | [`core`](/api/core) | update-potential-user |
| GET /potential-users/by-citizen-id/`{citizenId}`/credentials | [`core`](/api/core) | get-potential-user-credentials-by-citizen-id |
| GET /potential-users/current/citizen-id | [`core`](/api/core) | get-current-user-citizen-id |
| POST /queries | [`core`](/api/core) | create-query-definition |
| DELETE /queries/`{id}` | [`core`](/api/core) | delete-query-definition |
| GET /queries/`{id}` | [`core`](/api/core) | get-query-definition-by-id |
| GET /services | [`core`](/api/core) | get-service-definition-list |
| POST /services | [`core`](/api/core) | create-service-definition |
| GET /services/`{id}` | [`core`](/api/core) | get-service-definition-by-id |
| PUT /services/`{id}` | [`core`](/api/core) | update-service-definition |
| POST /services/`{id}`/refresh-cache-maps | [`core`](/api/core) | create-service-definition-refresh-cache-map |
| GET /services/`{id}`/requests | [`core`](/api/core) | get-service-definition-request-list |
| POST /services/`{id}`/requests | [`core`](/api/core) | create-service-definition-request |
| DELETE /services/`{id}`/requests/`{serviceRequestId}` | [`core`](/api/core) | delete-service-definition-request |
| PUT /services/`{id}`/requests/`{serviceRequestId}` | [`core`](/api/core) | update-service-definition-request |
| GET /services/`{id}`/responses | [`core`](/api/core) | get-service-definition-response-list |
| POST /services/`{id}`/responses | [`core`](/api/core) | create-service-definition-response |
| DELETE /services/`{id}`/responses/`{serviceResponseId}` | [`core`](/api/core) | delete-service-definition-response |
| PUT /services/`{id}`/responses/`{serviceResponseId}` | [`core`](/api/core) | update-service-definition-response |
| POST /services/`{id}`/validations | [`core`](/api/core) | create-service-definition-validation |
| GET /user-password-expirations | [`core`](/api/core) | get-user-password-expiration-list |
| POST /user-password-expirations | [`core`](/api/core) | create-user-password-expiration |
| GET /user-password-expirations/`{id}`/check-expiration | [`core`](/api/core) | check-user-password-expiration |
| GET /validations | [`core`](/api/core) | get-validation-definition-list |
| POST /validations | [`core`](/api/core) | create-validation-definition |
| POST /address-types | [`customer`](/api/customer) | create-address-type |
| DELETE /address-types/`{id}` | [`customer`](/api/customer) | delete-address-type |
| PUT /address-types/`{id}` | [`customer`](/api/customer) | update-address-type |
| POST /address-types/`{id}`/fields | [`customer`](/api/customer) | create-address-type-field |
| POST /blacklists | [`customer`](/api/customer) | create-black-list |
| GET /blacklists/exist | [`customer`](/api/customer) | is-black-list-exist-by-citizenid |
| PUT /blacklists/`{id}` | [`customer`](/api/customer) | update-black-list |
| GET /consent-items/dimensions | [`customer`](/api/customer) | get-consent-item-dimension-list |
| GET /consents | [`customer`](/api/customer) | get-consent-list |
| POST /consents | [`customer`](/api/customer) | create-consent |
| POST /consents/`{id}`/details | [`customer`](/api/customer) | create-consent-detail |
| POST /customer-groups | [`customer`](/api/customer) | create-customer-group |
| DELETE /customer-groups/`{id}` | [`customer`](/api/customer) | delete-customer-group |
| PUT /customer-groups/`{id}` | [`customer`](/api/customer) | update-customer-group |
| POST /customer-groups/`{id}`/members | [`customer`](/api/customer) | create-customer-group-member |
| DELETE /customer-groups/`{id}`/members/`{customerGroupMemberId}` | [`customer`](/api/customer) | delete-customer-group-member |
| PUT /customer-groups/`{id}`/members/`{customerGroupMemberId}` | [`customer`](/api/customer) | update-customer-group-member |
| POST /customer-number-reserves | [`customer`](/api/customer) | create-customer-reserved |
| GET /customer-number-reserves/by-customer-number/`{customerNumber}` | [`customer`](/api/customer) | is-customer-reserved |
| DELETE /customer-number-reserves/`{id}` | [`customer`](/api/customer) | delete-customer-reserved |
| PUT /customer-number-reserves/`{id}` | [`customer`](/api/customer) | update-customer-reserved |
| POST /customer-rules | [`customer`](/api/customer) | create-customer-rule |
| DELETE /customer-rules/`{id}` | [`customer`](/api/customer) | delete-customer-rule |
| PUT /customer-rules/`{id}` | [`customer`](/api/customer) | update-customer-rule |
| POST /customer-rules/`{id}`/execute-formula | [`customer`](/api/customer) | execute-customer-rule-formula |
| POST /customer-segments-range | [`customer`](/api/customer) | create-customer-segment-range |
| DELETE /customer-segments-range/`{id}` | [`customer`](/api/customer) | delete-customer-segment-range |
| PUT /customer-segments-range/`{id}` | [`customer`](/api/customer) | update-customer-segment-range |
| POST /customers | [`customer`](/api/customer) | create-customer |
| GET /customers/by-citizenid/`{citizenid}`/customerId | [`customer`](/api/customer) | get-customer-id-by-citizenid |
| GET /customers/identity-cards | [`customer`](/api/customer) | get-identity-card-list |
| GET /customers/phones | [`customer`](/api/customer) | get-phone-list |
| PUT /customers/`{id}` | [`customer`](/api/customer) | update-customer |
| POST /customers/`{id}`/addresses | [`customer`](/api/customer) | create-address |
| GET /customers/`{id}`/addresses/`{addressId}` | [`customer`](/api/customer) | get-address-by-id |
| PUT /customers/`{id}`/addresses/`{addressId}` | [`customer`](/api/customer) | update-address-by-id |
| POST /customers/`{id}`/attributes | [`customer`](/api/customer) | create-customer-attribute |
| POST /customers/`{id}`/authorities | [`customer`](/api/customer) | create-customer-authority |
| POST /customers/`{id}`/bnpl-virtual-cards | [`customer`](/api/customer) | create-bnpl-virtual-card |
| POST /customers/`{id}`/bnpl-virtual-ibans | [`customer`](/api/customer) | create-bnpl-virtual-iban |
| POST /customers/`{id}`/corporates | [`customer`](/api/customer) | create-corporate-customer |
| PUT /customers/`{id}`/corporates/`{corporateCustomerId}` | [`customer`](/api/customer) | update-corporate-customer |
| POST /customers/`{id}`/emails | [`customer`](/api/customer) | create-email-address |
| POST /customers/`{id}`/identities | [`customer`](/api/customer) | create-identity |
| PUT /customers/`{id}`/identities/`{identityCardId}` | [`customer`](/api/customer) | update-identity-field |
| POST /customers/`{id}`/individuals | [`customer`](/api/customer) | create-individual-customer |
| PUT /customers/`{id}`/individuals/`{individualCustomerId}` | [`customer`](/api/customer) | update-individual-customer |
| POST /customers/`{id}`/nationalities | [`customer`](/api/customer) | create-nationality |
| PUT /customers/`{id}`/nationalities | [`customer`](/api/customer) | update-batch-nationality |
| POST /customers/`{id}`/occupations | [`customer`](/api/customer) | create-occupation |
| PUT /customers/`{id}`/occupations | [`customer`](/api/customer) | update-occupation |
| POST /customers/`{id}`/phones | [`customer`](/api/customer) | create-phone |
| POST /customers/`{id}`/potentials | [`customer`](/api/customer) | create-potential-customer |
| PUT /customers/`{id}`/potentials/`{individualCustomerId}` | [`customer`](/api/customer) | update-potential-customer |
| POST /customers/`{id}`/profiles | [`customer`](/api/customer) | create-customer-profile |
| POST /customers/`{id}`/relationships | [`customer`](/api/customer) | create-customer-relationship |
| DELETE /customers/`{id}`/relationships/`{relationshipId}` | [`customer`](/api/customer) | delete-customer-relationship |
| PUT /customers/`{id}`/relationships/`{relationshipId}` | [`customer`](/api/customer) | update-customer-relationship |
| POST /customers/`{id}`/relationships/`{relationshipId}`/shareholders | [`customer`](/api/customer) | create-customer-shareholder |
| DELETE /customers/`{id}`/relationships/`{relationshipId}`/shareholders/`{shareholderId}` | [`customer`](/api/customer) | delete-customer-shareholder |
| PUT /customers/`{id}`/relationships/`{relationshipId}`/shareholders/`{shareholderId}` | [`customer`](/api/customer) | update-customer-shareholder |
| POST /customers/`{id}`/residentials | [`customer`](/api/customer) | create-residential |
| PUT /customers/`{id}`/residentials | [`customer`](/api/customer) | update-batch-residential |
| POST /customers/`{id}`/segments | [`customer`](/api/customer) | create-customer-segment |
| POST /customers/`{id}`/taxpayers | [`customer`](/api/customer) | create-customer-taxpayer |
| POST /customers/`{id}`/unlimited-companies | [`customer`](/api/customer) | create-unlimited-company-customer |
| PUT /customers/`{id}`/unlimited-companies/`{unlimitedCompanyCustomerId}` | [`customer`](/api/customer) | update-unlimited-company-customer |
| PUT /customers/`{id}`/user | [`customer`](/api/customer) | update-customer-user-id |
| POST /identity-types | [`customer`](/api/customer) | create-identity-type |
| DELETE /identity-types/`{id}` | [`customer`](/api/customer) | delete-identity-type |
| PUT /identity-types/`{id}` | [`customer`](/api/customer) | update-identity-type |
| POST /identity-types/`{id}`/fields | [`customer`](/api/customer) | create-identity-type-field |
| POST /localizations | [`customer`](/api/customer) | customer-create-localization |
| DELETE /localizations/`{id}` | [`customer`](/api/customer) | customer-delete-localization |
| PUT /localizations/`{id}` | [`customer`](/api/customer) | customer-update-localization |
| POST /occupation-types | [`customer`](/api/customer) | create-occupation-type |
| DELETE /occupation-types/`{id}` | [`customer`](/api/customer) | delete-occupation-type |
| PUT /occupation-types/`{id}` | [`customer`](/api/customer) | update-occupation-type |
| POST /occupation-types/`{id}`/fields | [`customer`](/api/customer) | create-occupation-type-field |
| POST /parameters | [`customer`](/api/customer) | customer-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`customer`](/api/customer) | customer-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`customer`](/api/customer) | customer-delete-parameter |
| PUT /parameters/`{id}` | [`customer`](/api/customer) | customer-update-parameter |
| POST /parameters/`{id}`/values | [`customer`](/api/customer) | customer-create-parameter-value |
| GET /baskets/by-order-no/`{orderNo}` | [`customer-application`](/api/customer-application) | get-basket-by-order-no |
| POST /customer-applications | [`customer-application`](/api/customer-application) | create-customer-application |
| PUT /customer-applications/`{id}` | [`customer-application`](/api/customer-application) | update-customer-application |
| POST /customer-applications/`{id}`/assets | [`customer-application`](/api/customer-application) | create-customer-application-asset |
| DELETE /customer-applications/`{id}`/assets/`{assetId}` | [`customer-application`](/api/customer-application) | delete-customer-application-asset |
| GET /customer-applications/`{id}`/details | [`customer-application`](/api/customer-application) | get-customer-application-details-by-id |
| POST /customer-applications/`{id}`/evaluation-results | [`customer-application`](/api/customer-application) | create-application-evaluation-result |
| POST /customer-applications/`{id}`/expenses | [`customer-application`](/api/customer-application) | create-customer-application-expense |
| DELETE /customer-applications/`{id}`/expenses/`{expenseId}` | [`customer-application`](/api/customer-application) | delete-customer-application-expense |
| POST /customer-applications/`{id}`/incomes | [`customer-application`](/api/customer-application) | create-customer-application-income |
| DELETE /customer-applications/`{id}`/incomes/`{incomeId}` | [`customer-application`](/api/customer-application) | delete-customer-application-income |
| POST /customer-applications/`{id}`/products | [`customer-application`](/api/customer-application) | create-customer-application-product |
| DELETE /customer-applications/`{id}`/products/`{applicationProductId}` | [`customer-application`](/api/customer-application) | delete-customer-application-product |
| PUT /customer-applications/`{id}`/status | [`customer-application`](/api/customer-application) | update-customer-application-status |
| POST /localizations | [`customer-application`](/api/customer-application) | customer-application-create-localization |
| DELETE /localizations/`{id}` | [`customer-application`](/api/customer-application) | customer-application-delete-localization |
| PUT /localizations/`{id}` | [`customer-application`](/api/customer-application) | customer-application-update-localization |
| POST /parameters | [`customer-application`](/api/customer-application) | customer-application-create-parameter |
| DELETE /parameters/`{id}` | [`customer-application`](/api/customer-application) | customer-application-delete-parameter |
| PUT /parameters/`{id}` | [`customer-application`](/api/customer-application) | customer-application-update-parameter |
| POST /parameters/`{id}`/values | [`customer-application`](/api/customer-application) | customer-application-create-parameter-value |
| POST /control-item-groups | [`customer-evaluation`](/api/customer-evaluation) | create-control-item-group |
| DELETE /control-item-groups/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | delete-control-item-group |
| GET /control-item-groups/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | get-control-item-group-by-id |
| PUT /control-item-groups/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | update-control-item-group |
| POST /control-item-groups/`{id}`/maps | [`customer-evaluation`](/api/customer-evaluation) | create-control-item-group-map |
| DELETE /control-item-groups/`{id}`/maps/`{controlItemGroupMapId}` | [`customer-evaluation`](/api/customer-evaluation) | delete-control-item-group-map |
| PUT /control-item-groups/`{id}`/maps/`{controlItemGroupMapId}` | [`customer-evaluation`](/api/customer-evaluation) | update-control-item-group-map |
| POST /control-items | [`customer-evaluation`](/api/customer-evaluation) | create-control-item |
| DELETE /control-items/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | delete-control-item |
| GET /control-items/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | get-control-item-by-id |
| PUT /control-items/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | update-control-item |
| POST /control-views | [`customer-evaluation`](/api/customer-evaluation) | create-control-view |
| POST /control-views/calculate | [`customer-evaluation`](/api/customer-evaluation) | calculate-control-view |
| DELETE /control-views/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | delete-control-view |
| GET /control-views/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | get-control-view-by-id |
| PUT /control-views/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | update-control-view |
| DELETE /control-views/`{id}`/control-view-maps/`{controlViewMapId}` | [`customer-evaluation`](/api/customer-evaluation) | delete-control-view-map |
| POST /control-views/`{id}`/maps | [`customer-evaluation`](/api/customer-evaluation) | create-control-view-map |
| POST /localizations | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-create-localization |
| DELETE /localizations/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-delete-localization |
| PUT /localizations/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-update-localization |
| POST /parameters | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-create-parameter |
| DELETE /parameters/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-delete-parameter |
| PUT /parameters/`{id}` | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-update-parameter |
| POST /parameters/`{id}`/values | [`customer-evaluation`](/api/customer-evaluation) | customer-evaluation-create-parameter-value |
| POST /dms-models | [`document-management`](/api/document-management) | create-dms-model |
| GET /dms-models/items | [`document-management`](/api/document-management) | get-dms-model-item-list |
| DELETE /dms-models/`{id}` | [`document-management`](/api/document-management) | delete-dms-model |
| GET /dms-models/`{id}` | [`document-management`](/api/document-management) | get-dms-model-by-id |
| PUT /dms-models/`{id}` | [`document-management`](/api/document-management) | update-dms-model |
| POST /dms-models/`{id}`/items | [`document-management`](/api/document-management) | create-dms-model-item |
| GET /dms-queries | [`document-management`](/api/document-management) | get-dms-query-list |
| POST /dms-queries | [`document-management`](/api/document-management) | create-dms-query |
| GET /dms-queries/model-maps | [`document-management`](/api/document-management) | get-dms-query-model-map-list |
| DELETE /dms-queries/`{id}` | [`document-management`](/api/document-management) | delete-dms-query |
| PUT /dms-queries/`{id}` | [`document-management`](/api/document-management) | update-dms-query |
| POST /dms-queries/`{id}`/model-maps | [`document-management`](/api/document-management) | create-dms-query-model-map |
| DELETE /dms-queries/`{id}`/model-maps/`{dmsQueryModelMapId}` | [`document-management`](/api/document-management) | delete-dms-query-model-map |
| GET /dms-queries/`{id}`/model-maps/`{dmsQueryModelMapId}` | [`document-management`](/api/document-management) | get-dms-query-model-map-by-id |
| POST /document-items | [`document-management`](/api/document-management) | create-document-item |
| DELETE /document-items/`{id}` | [`document-management`](/api/document-management) | delete-document-item |
| GET /document-items/`{id}` | [`document-management`](/api/document-management) | get-document-item-by-id |
| PUT /document-items/`{id}` | [`document-management`](/api/document-management) | update-document-item |
| POST /document-items/`{id}`/details | [`document-management`](/api/document-management) | create-document-item-detail |
| GET /document-service-maps | [`document-management`](/api/document-management) | get-document-service-map-list |
| POST /document-service-maps | [`document-management`](/api/document-management) | create-document-service-map |
| DELETE /document-service-maps/`{id}` | [`document-management`](/api/document-management) | delete-document-service-map |
| GET /document-service-maps/`{id}` | [`document-management`](/api/document-management) | get-document-service-map-by-id |
| PUT /document-service-maps/`{id}` | [`document-management`](/api/document-management) | update-document-service-map |
| POST /documents/base-query | [`document-management`](/api/document-management) | document-base-query |
| POST /documents/copy | [`document-management`](/api/document-management) | copy-document |
| POST /documents/move-by-path | [`document-management`](/api/document-management) | move-document-by-path |
| POST /documents/query | [`document-management`](/api/document-management) | document-query |
| PUT /documents/`{id}`/properties | [`document-management`](/api/document-management) | update-document-property-by-id |
| DELETE /documents/`{id}`/versions | [`document-management`](/api/document-management) | delete-document-all-version |
| POST /folders | [`document-management`](/api/document-management) | create-folder |
| GET /folders/check | [`document-management`](/api/document-management) | check-folder |
| DELETE /items | [`document-management`](/api/document-management) | delete-item |
| GET /items | [`document-management`](/api/document-management) | get-item-by-path |
| PUT /items/rename | [`document-management`](/api/document-management) | rename-item-name-by-path |
| POST /localizations | [`document-management`](/api/document-management) | document-management-create-localization |
| DELETE /localizations/`{id}` | [`document-management`](/api/document-management) | document-management-delete-localization |
| PUT /localizations/`{id}` | [`document-management`](/api/document-management) | document-management-update-localization |
| POST /parameters | [`document-management`](/api/document-management) | document-management-create-parameter |
| DELETE /parameters/`{id}` | [`document-management`](/api/document-management) | document-management-delete-parameter |
| PUT /parameters/`{id}` | [`document-management`](/api/document-management) | document-management-update-parameter |
| POST /parameters/`{id}`/ | [`document-management`](/api/document-management) | document-management-create-parameter-value |
| POST /expense-collections | [`expense`](/api/expense) | create-expense-collection |
| POST /expense-items | [`expense`](/api/expense) | create-expense-item |
| DELETE /expense-items/`{id}` | [`expense`](/api/expense) | delete-expense-item |
| PUT /expense-items/`{id}` | [`expense`](/api/expense) | update-expense-item |
| GET /expense-items/`{id}`/calculation-control | [`expense`](/api/expense) | get-expense-item-calculation-control-by-expense-item-id |
| POST /expense-items/`{id}`/calculation-details | [`expense`](/api/expense) | create-expense-item-calculation |
| GET /expense-items/`{id}`/calculation-taxes | [`expense`](/api/expense) | get-expense-calculation-tax |
| POST /expense-items/`{id}`/calculation-taxes | [`expense`](/api/expense) | create-expense-item-calculation-tax |
| POST /expense-items/`{id}`/calculation-types | [`expense`](/api/expense) | create-expense-item-calculation-type |
| POST /expense-items/`{id}`/calculation-types/`{calculationTypeId}`/calculate-by-formula | [`expense`](/api/expense) | get-expense-calculation-amount-by-formula |
| GET /expense-items/`{id}`/calculation-types/`{calculationTypeId}`/calculate-for-constant | [`expense`](/api/expense) | get-expense-calculation-amount-for-constant |
| GET /expense-items/`{id}`/calculation-types/`{calculationTypeId}`/calculate-for-constants-and-rate | [`expense`](/api/expense) | get-expense-calculation-amount-for-constant-and-rate |
| GET /expense-items/`{id}`/calculation-types/`{calculationTypeId}`/calculate-for-rate | [`expense`](/api/expense) | get-expense-calculation-amount-for-rate |
| DELETE /expense-items/`{id}`/calculation-types/`{expenseItemCalculationTypeId}` | [`expense`](/api/expense) | delete-expense-item-calculation-type |
| PUT /expense-items/`{id}`/calculation-types/`{expenseItemCalculationTypeId}` | [`expense`](/api/expense) | update-expense-item-calculation-type |
| POST /expense-items/`{id}`/calculation-types/`{expenseItemCalculationTypeId}`/calculation-ranges | [`expense`](/api/expense) | create-expense-item-calculation-range |
| POST /expense-items/`{id}`/calculation-types/`{expenseItemCalculationTypeId}`/customer-types | [`expense`](/api/expense) | create-expense-item-customer-type |
| PUT /expense-items/`{id}`/currencies/`{expenseItemCurrencyId}` | [`expense`](/api/expense) | update-expense-item-currency |
| GET /expense-items/`{id}`/usage | [`expense`](/api/expense) | has-expense-item-usage |
| POST /expense-rules | [`expense`](/api/expense) | create-expense-rule |
| GET /expense-rules/expense-rule-maps | [`expense`](/api/expense) | get-expense-rule-map-list |
| PUT /expense-rules/`{id}` | [`expense`](/api/expense) | update-expense-rule |
| POST /expense-rules/`{id}`/execute-formula | [`expense`](/api/expense) | execute-expense-rule-formula |
| POST /expense-rules/`{id}`/expense-rule-maps | [`expense`](/api/expense) | create-expense-rule-map |
| POST /expenses | [`expense`](/api/expense) | create-expense |
| POST /expenses/`{id}`/accounts | [`expense`](/api/expense) | create-expense-account |
| GET /expenses/`{id}`/amount | [`expense`](/api/expense) | get-expense-amount-by-id |
| POST /expenses/`{id}`/installments | [`expense`](/api/expense) | create-expense-installment |
| PUT /expenses/`{id}`/installments/`{expenseInstallmentId}`/accrual-accounting-entry | [`expense`](/api/expense) | update-expense-installment-accrual-accounting-entry-id |
| GET /expenses/`{id}`/ranges | [`expense`](/api/expense) | get-expense-range-control |
| PUT /expenses/`{id}`/status | [`expense`](/api/expense) | update-expense-status |
| POST /localizations | [`expense`](/api/expense) | expense-create-localization |
| DELETE /localizations/`{id}` | [`expense`](/api/expense) | expense-delete-localization |
| PUT /localizations/`{id}` | [`expense`](/api/expense) | expense-update-localization |
| POST /parameters | [`expense`](/api/expense) | expense-create-parameter |
| DELETE /parameters/`{id}` | [`expense`](/api/expense) | expense-delete-parameter |
| PUT /parameters/`{id}` | [`expense`](/api/expense) | expense-update-parameter |
| POST /parameters/`{id}`/values | [`expense`](/api/expense) | expense-create-parameter-value |
| POST /import-letter-credits | [`foreign-trade`](/api/foreign-trade) | create-import-letter-credit |
| POST /incoming-letter-of-guarantees | [`foreign-trade`](/api/foreign-trade) | create-incoming-letter-of-guarantee |
| POST /outgoing-letter-of-guarantees | [`foreign-trade`](/api/foreign-trade) | create-outgoing-letter-of-guarantee |
| POST /aml-item-configs | [`integration`](/api/integration) | create-aml-item-config |
| DELETE /aml-item-configs/`{id}` | [`integration`](/api/integration) | delete-aml-item-config |
| GET /aml-item-configs/`{id}` | [`integration`](/api/integration) | get-aml-item-config-by-id |
| PUT /aml-item-configs/`{id}` | [`integration`](/api/integration) | update-aml-item-config |
| GET /aml/search-by-document-number | [`integration`](/api/integration) | search-by-document-number |
| GET /aml/search-by-identity/`{citizenNumber}` | [`integration`](/api/integration) | search-by-identity |
| POST /card/activate-prepaid-card | [`integration`](/api/integration) | activate-prepaid-card |
| POST /card/create-virtual-card | [`integration`](/api/integration) | create-virtual-card |
| GET /credit-bureau-infos/individual-queries/internal/by-citizenid/`{citizenId}` | [`integration`](/api/integration) | get-individual-query-internal |
| DELETE /easy-addresses | [`integration`](/api/integration) | delete-easy-address-definition |
| PUT /easy-addresses | [`integration`](/api/integration) | update-easy-address-definition |
| GET /easy-addresses/moved | [`integration`](/api/integration) | get-moved-address |
| POST /email-multi-attachment-notifications/send | [`integration`](/api/integration) | send-email-multi-attachment |
| POST /enqura-qualify/sessions | [`integration`](/api/integration) | session-qualify |
| GET /exchange-rates | [`integration`](/api/integration) | get-exchange-rate-list |
| GET /external-service-results/unproccessed-virtual-iban-results | [`integration`](/api/integration) | get-unproccessed-virtual-iban-result-list |
| PUT /external-services/`{id}` | [`integration`](/api/integration) | update-external-service-definition |
| GET /external-services/`{id}`/usage | [`integration`](/api/integration) | has-external-service-usage |
| GET /file-storages | [`integration`](/api/integration) | get-file-storage-list |
| POST /file-transfers/by-code/`{code}`/execute | [`integration`](/api/integration) | execute-file-transfer |
| GET /financier/get-available-limit | [`integration`](/api/integration) | get-available-limit |
| POST /generate-otp | [`integration`](/api/integration) | generate-activation-otp |
| POST /ibans/check-ibans | [`integration`](/api/integration) | check-virtual-iban |
| POST /ibans/incomig-transactions | [`integration`](/api/integration) | get-incoming-transaction-list |
| GET /identities/person-addresses | [`integration`](/api/integration) | get-person-address |
| GET /identities/person-infos | [`integration`](/api/integration) | get-person-info |
| GET /identities/person-registration-changes | [`integration`](/api/integration) | get-person-registration-changed |
| GET /identities/person-registrations | [`integration`](/api/integration) | get-person-registration |
| POST /instant-payment | [`integration`](/api/integration) | create-instant-payment |
| GET /krs-risk-reports/by-citizen-id/`{citizenId}` | [`integration`](/api/integration) | get-krs-risk-report-by-citizen-id |
| GET /kyc-references | [`integration`](/api/integration) | get-kyc-reference-list |
| POST /kyc-references | [`integration`](/api/integration) | create-kyc-reference |
| PUT /kyc-references/`{id}` | [`integration`](/api/integration) | update-kyc-reference |
| POST /limit-assignments/financial-analysis | [`integration`](/api/integration) | limit-assignment-financial-analysis |
| POST /localizations | [`integration`](/api/integration) | integration-create-localization |
| DELETE /localizations/`{id}` | [`integration`](/api/integration) | integration-delete-localization |
| PUT /localizations/`{id}` | [`integration`](/api/integration) | integration-update-localization |
| POST /notification-providers/`{id}`/sms-results | [`integration`](/api/integration) | create-notification-sms-result |
| POST /parameters | [`integration`](/api/integration) | integration-create-parameter |
| DELETE /parameters/`{id}` | [`integration`](/api/integration) | integration-delete-parameter |
| PUT /parameters/`{id}` | [`integration`](/api/integration) | integration-update-parameter |
| POST /parameters/`{id}`/values | [`integration`](/api/integration) | integration-create-parameter-value |
| POST /payfour/loan-application | [`integration`](/api/integration) | integration-loan-application |
| POST /payfour/potential-limit | [`integration`](/api/integration) | integration-potential-limit |
| POST /person-address-infos | [`integration`](/api/integration) | create-person-address-info |
| DELETE /person-address-infos/by-citizenid/`{citizenid}` | [`integration`](/api/integration) | delete-person-address-info-by-citizenid |
| GET /person-address-infos/by-citizenid/`{citizenid}` | [`integration`](/api/integration) | get-person-address-info-by-citizenid |
| POST /person-info-changes | [`integration`](/api/integration) | create-person-info-changed |
| POST /person-infos | [`integration`](/api/integration) | create-person-info |
| DELETE /person-infos/by-citizenid/`{citizenid}` | [`integration`](/api/integration) | delete-person-info-by-citizenid |
| GET /person-infos/by-citizenid/`{citizenid}` | [`integration`](/api/integration) | get-person-info-by-citizenid |
| POST /pwf-transactions/check-approval | [`integration`](/api/integration) | check-transaction-approval |
| POST /pwf-transactions/start-client | [`integration`](/api/integration) | start-client-transaction |
| POST /sms-notifications/send-broadcast | [`integration`](/api/integration) | send-broadcast-sms |
| POST /sms-notifications/send-instant | [`integration`](/api/integration) | send-instant-sms |
| POST /verify-login-otp | [`integration`](/api/integration) | verify-login-otp |
| POST /verify/integration/add | [`integration`](/api/integration) | add-enqura-qualify |
| POST /virtual-iban-results | [`integration`](/api/integration) | create-virtual-iban-result |
| PUT /virtual-iban-results/`{id}` | [`integration`](/api/integration) | update-virtual-iban-result |
| POST /zubizu/customer-info | [`integration`](/api/integration) | send-customer-info-zubizu |
| GET /kas/iban-detail | [`kas`](/api/kas) | get-iban-detail |
| GET /to-kas/`{id}` | [`kas`](/api/kas) | get-to-kas-by-id |
| GET /customer-follow-notifications | [`legal-follow`](/api/legal-follow) | get-customer-follow-notification-list |
| POST /customer-follow-notifications | [`legal-follow`](/api/legal-follow) | create-customer-follow-notification |
| GET /customer-follow-notifications/`{id}`/call-notifications | [`legal-follow`](/api/legal-follow) | get-customer-follow-notification-call-list |
| POST /customer-follow-notifications/`{id}`/call-notifications | [`legal-follow`](/api/legal-follow) | create-customer-follow-notification-call |
| GET /customer-follow-notifications/`{id}`/sms-notifications | [`legal-follow`](/api/legal-follow) | get-customer-follow-notification-sms-list |
| POST /customer-follow-notifications/`{id}`/sms-notifications | [`legal-follow`](/api/legal-follow) | create-customer-follow-notification-sms |
| POST /customer-follows | [`legal-follow`](/api/legal-follow) | create-customer-follow |
| GET /customer-follows-with-debts | [`legal-follow`](/api/legal-follow) | get-customer-follow-with-debt-list |
| GET /customer-follows/debts | [`legal-follow`](/api/legal-follow) | get-customer-follow-debt-list |
| GET /customer-follows/`{id}`/debts | [`legal-follow`](/api/legal-follow) | get-customer-follow-debt-by-id |
| POST /customer-follows/`{id}`/debts | [`legal-follow`](/api/legal-follow) | create-customer-follow-debt |
| PUT /customer-follows/`{id}`/debts/`{customerFollowDebtId}`/status | [`legal-follow`](/api/legal-follow) | update-customer-follow-debt-status |
| PUT /customer-follows/`{id}`/status | [`legal-follow`](/api/legal-follow) | update-customer-follow-status |
| GET /follow-types | [`legal-follow`](/api/legal-follow) | get-follow-type-list |
| POST /follow-types | [`legal-follow`](/api/legal-follow) | create-follow-type |
| GET /follow-types/`{id}` | [`legal-follow`](/api/legal-follow) | get-follow-type-by-id |
| PUT /follow-types/`{id}` | [`legal-follow`](/api/legal-follow) | update-follow-type |
| PUT /follow-types/`{id}`/active | [`legal-follow`](/api/legal-follow) | update-follow-type-active |
| GET /follow-types/`{id}`/details | [`legal-follow`](/api/legal-follow) | get-follow-type-details-by-id |
| GET /follow-types/`{id}`/notifications | [`legal-follow`](/api/legal-follow) | get-follow-type-notification-list |
| POST /follow-types/`{id}`/notifications | [`legal-follow`](/api/legal-follow) | create-follow-type-notification |
| PUT /follow-types/`{id}`/notifications/`{notificationId}` | [`legal-follow`](/api/legal-follow) | update-follow-type-notification |
| PUT /follow-types/`{id}`/notifications/`{notificationId}`/active | [`legal-follow`](/api/legal-follow) | update-follow-type-notification-active |
| POST /follow-types/`{id}`/provisions | [`legal-follow`](/api/legal-follow) | create-follow-type-provision |
| PUT /follow-types/`{id}`/provisions/`{provisionId}` | [`legal-follow`](/api/legal-follow) | update-follow-type-provision |
| PUT /follow-types/`{id}`/provisions/`{provisionId}`/active | [`legal-follow`](/api/legal-follow) | update-follow-type-provision-active |
| POST /localizations | [`legal-follow`](/api/legal-follow) | legal-follow-create-localization |
| DELETE /localizations/`{id}` | [`legal-follow`](/api/legal-follow) | legal-follow-delete-localization |
| PUT /localizations/`{id}` | [`legal-follow`](/api/legal-follow) | legal-follow-update-localization |
| POST /parameters | [`legal-follow`](/api/legal-follow) | legal-follow-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`legal-follow`](/api/legal-follow) | legal-follow-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`legal-follow`](/api/legal-follow) | legal-follow-delete-parameter |
| PUT /parameters/`{id}` | [`legal-follow`](/api/legal-follow) | legal-follow-update-parameter |
| POST /parameters/`{id}`/values | [`legal-follow`](/api/legal-follow) | legal-follow-create-parameter-value |
| POST /provisions | [`legal-follow`](/api/legal-follow) | create-provision |
| GET /provisions/`{id}` | [`legal-follow`](/api/legal-follow) | get-provision-by-id |
| PUT /provisions/`{id}`/accounting-entry-id | [`legal-follow`](/api/legal-follow) | update-provision-accounting-entry-id |
| POST /provisions/`{id}`/provision-item | [`legal-follow`](/api/legal-follow) | create-provision-item |
| PUT /provisions/`{id}`/reversed-accounting-entry-id | [`legal-follow`](/api/legal-follow) | update-provision-reversed-account-entry-id |
| PUT /provisions/`{id}`/status | [`legal-follow`](/api/legal-follow) | update-provision-status |
| POST /external-vendors | [`loan`](/api/loan) | create-vendor-external |
| GET /external-vendors/accounts | [`loan`](/api/loan) | get-all-vendor-external-account-list |
| GET /external-vendors/by-merchant-id/`{merchantId}` | [`loan`](/api/loan) | get-vendor-external-detail-list-by-merchant-id |
| GET /external-vendors/`{id}`/accounts | [`loan`](/api/loan) | get-vendor-external-account-list |
| POST /external-vendors/`{id}`/accounts | [`loan`](/api/loan) | create-vendor-external-account |
| DELETE /external-vendors/`{id}`/accounts/`{vendorAccountId}` | [`loan`](/api/loan) | delete-vendor-external-account |
| GET /external-vendors/`{id}`/details | [`loan`](/api/loan) | get-vendor-external-details-by-id |
| GET /external-vendors/`{id}`/mails | [`loan`](/api/loan) | get-vendor-external-mail-list |
| POST /external-vendors/`{id}`/mails | [`loan`](/api/loan) | create-vendor-external-mail |
| DELETE /external-vendors/`{id}`/mails/`{mailId}` | [`loan`](/api/loan) | delete-vendor-external-mail |
| PUT /external-vendors/`{id}`/merchantId | [`loan`](/api/loan) | update-vendor-external-merchant-id |
| GET /external-vendors/`{id}`/phones | [`loan`](/api/loan) | get-vendor-external-phone-list |
| POST /external-vendors/`{id}`/phones | [`loan`](/api/loan) | create-vendor-external-phone |
| PUT /external-vendors/`{id}`/phones/`{phoneId}` | [`loan`](/api/loan) | update-external-vendor-phone-priority |
| POST /external-vendors/`{id}`/poses | [`loan`](/api/loan) | create-vendor-external-pos |
| DELETE /external-vendors/`{id}`/poses/`{vendorExternalPosId}` | [`loan`](/api/loan) | delete-vendor-external-pos |
| PUT /external-vendors/`{id}`/poses/`{vendorExternalPosId}`/status | [`loan`](/api/loan) | update-vendor-external-pos-status |
| PUT /external-vendors/`{id}`/status | [`loan`](/api/loan) | update-vendor-external-status |
| POST /external-vendors/`{id}`/vendor-external-distributors | [`loan`](/api/loan) | create-vendor-external-distributor |
| DELETE /external-vendors/`{id}`/vendor-external-distributors/`{vendorExternalDistributorId}` | [`loan`](/api/loan) | delete-vendor-external-distributor |
| GET /get-corrupted-loan-payback-plan-installment-detail-list | [`loan`](/api/loan) | get-corrupted-loan-payback-plan-installment-detail-list |
| GET /get-corrupted-loan-payback-plan-installment-detail-list-for-delay-penalties | [`loan`](/api/loan) | get-corrupted-loan-payback-plan-installment-detail-list-for-delay-penalties |
| GET /get-customer-risk-excluded-loan-amount | [`loan`](/api/loan) | get-customer-risk-excluded-loan-amount |
| GET /get-ready-to-close-loans | [`loan`](/api/loan) | get-ready-to-close-loans |
| GET /get-upcoming-installments | [`loan`](/api/loan) | get-upcoming-installments |
| GET /internal-vendors/`{id}`/accounts | [`loan`](/api/loan) | get-vendor-internal-account-list |
| POST /internal-vendors/`{id}`/accounts | [`loan`](/api/loan) | create-vendor-internal-account |
| DELETE /internal-vendors/`{id}`/accounts/`{vendorAccountId}` | [`loan`](/api/loan) | delete-vendor-internal-account |
| GET /loan-payout-reservations | [`loan`](/api/loan) | get-loan-payout-reservation-list |
| GET /loans | [`loan`](/api/loan) | get-loan-list |
| POST /loans | [`loan`](/api/loan) | create-loan |
| GET /loans/base-prices | [`loan`](/api/loan) | get-loan-base-price-list |
| GET /loans/by-installment-id/`{installmentId}`/installment | [`loan`](/api/loan) | get-loan-installment-details-by-installment-id |
| GET /loans/by-proposal-id/`{proposalId}`/id | [`loan`](/api/loan) | get-loan-id-by-proposal-id |
| GET /loans/installments | [`loan`](/api/loan) | get-loan-installment-list |
| GET /loans/return-payments | [`loan`](/api/loan) | get-loan-return-payment-list |
| GET /loans/vendor-disbursements | [`loan`](/api/loan) | get-vendor-disbursement-list |
| GET /loans/without-partner | [`loan`](/api/loan) | get-loan-list-without-partner |
| PUT /loans/`{externalTransactionid}`/vendor-disbursements/disbursementDate | [`loan`](/api/loan) | update-vendor-disbursement-disbursement-date |
| GET /loans/`{id}` | [`loan`](/api/loan) | get-loan-by-id |
| PUT /loans/`{id}`/account-id | [`loan`](/api/loan) | update-loan-account-id |
| PUT /loans/`{id}`/accounting-entry-id | [`loan`](/api/loan) | update-loan-accounting-entry-id |
| PUT /loans/`{id}`/allotment-query-id | [`loan`](/api/loan) | update-loan-allotment-query-id |
| GET /loans/`{id}`/base-prices | [`loan`](/api/loan) | get-loan-base-price-list-by-loan-id |
| POST /loans/`{id}`/base-prices | [`loan`](/api/loan) | create-loan-base-price |
| POST /loans/`{id}`/cancel | [`loan`](/api/loan) | cancel-loan |
| POST /loans/`{id}`/cancel-finalization | [`loan`](/api/loan) | cancel-loan-finalization |
| POST /loans/`{id}`/channels | [`loan`](/api/loan) | create-loan-channels |
| PUT /loans/`{id}`/close | [`loan`](/api/loan) | close-loan |
| POST /loans/`{id}`/collateral-usages | [`loan`](/api/loan) | create-loan-collateral-usage |
| GET /loans/`{id}`/delegations | [`loan`](/api/loan) | get-loan-delegation-list |
| POST /loans/`{id}`/delegations | [`loan`](/api/loan) | create-loan-delegation |
| PUT /loans/`{id}`/delegations/`{delegationId}` | [`loan`](/api/loan) | update-loan-delegation |
| PUT /loans/`{id}`/delegations/`{delegationId}`/status | [`loan`](/api/loan) | update-loan-delegation-status |
| POST /loans/`{id}`/expenses | [`loan`](/api/loan) | create-loan-expense |
| DELETE /loans/`{id}`/expenses/`{loanExpenseId}` | [`loan`](/api/loan) | delete-loan-expense |
| PUT /loans/`{id}`/expenses/`{loanExpenseId}`/include | [`loan`](/api/loan) | update-loan-expense-include |
| PUT /loans/`{id}`/external-transaction-id | [`loan`](/api/loan) | update-loan-external-transaction-id |
| POST /loans/`{id}`/finalization | [`loan`](/api/loan) | loan-finalization |
| POST /loans/`{id}`/guarantors | [`loan`](/api/loan) | create-loan-guarantor |
| DELETE /loans/`{id}`/guarantors/`{guarantorId}` | [`loan`](/api/loan) | delete-loan-guarantor |
| PUT /loans/`{id}`/installment-collections/change-bulk-status | [`loan`](/api/loan) | update-installment-collection-status |
| GET /loans/`{id}`/installments | [`loan`](/api/loan) | get-installment-list-by-id |
| POST /loans/`{id}`/insurances | [`loan`](/api/loan) | create-insurance |
| DELETE /loans/`{id}`/insurances/`{insuranceId}` | [`loan`](/api/loan) | delete-insurance |
| GET /loans/`{id}`/insurances/`{insuranceId}` | [`loan`](/api/loan) | get-insurance-by-id |
| PUT /loans/`{id}`/insurances/`{insuranceId}` | [`loan`](/api/loan) | update-insurance |
| POST /loans/`{id}`/invoices | [`loan`](/api/loan) | create-loan-invoice |
| PUT /loans/`{id}`/invoices/`{invoiceId}` | [`loan`](/api/loan) | update-loan-invoice |
| POST /loans/`{id}`/metal-purchases | [`loan`](/api/loan) | create-loan-metal-purchase |
| GET /loans/`{id}`/orders | [`loan`](/api/loan) | get-loan-order-list-by-loan-id |
| POST /loans/`{id}`/orders | [`loan`](/api/loan) | create-loan-order |
| PUT /loans/`{id}`/orders/`{orderId}` | [`loan`](/api/loan) | update-loan-order |
| PUT /loans/`{id}`/orders/`{orderId}`/status | [`loan`](/api/loan) | update-loan-order-status |
| POST /loans/`{id}`/payback-plans | [`loan`](/api/loan) | create-loan-payback-plan |
| GET /loans/`{id}`/payback-plans/`{loanPaybackPlanId}`/taxes | [`loan`](/api/loan) | get-loan-payback-plan-tax-list-by-id |
| PUT /loans/`{id}`/payback-plans/`{paybackPlanId}`/installments/`{installmentId}` | [`loan`](/api/loan) | update-loan-paybackplan-installment-detail |
| PUT /loans/`{id}`/payback-plans/`{paybackPlanId}`/installments/`{installmentId}`/remaining-amount | [`loan`](/api/loan) | update-loan-paybackplan-installment-detail-remaining-amount |
| PUT /loans/`{id}`/payback-plans/`{paybackPlanId}`/status | [`loan`](/api/loan) | update-loan-payback-plan-status |
| POST /loans/`{id}`/return-payments | [`loan`](/api/loan) | create-loan-return-payment |
| PUT /loans/`{id}`/return-payments/`{loanReturnPaymentId}` | [`loan`](/api/loan) | update-loan-return-payment |
| POST /loans/`{id}`/return-payments/`{loanReturnPaymentId}`/details | [`loan`](/api/loan) | create-loan-return-payment-detail |
| PUT /loans/`{id}`/status | [`loan`](/api/loan) | update-loan-status |
| GET /loans/`{id}`/vendor-disbursements | [`loan`](/api/loan) | get-loan-vendor-disbursement-list |
| POST /loans/`{id}`/vendor-disbursements | [`loan`](/api/loan) | create-vendor-disbursement |
| GET /loans/`{id}`/vendor-disbursements/`{vendorDisbursementId}` | [`loan`](/api/loan) | get-vendor-disbursement-by-id |
| PUT /loans/`{id}`/vendor-disbursements/`{vendorDisbursementId}`/accounting-entry-id | [`loan`](/api/loan) | update-vendor-disbursement-accounting-entry-id |
| PUT /loans/`{id}`/vendor-disbursements/`{vendorDisbursementId}`/cancel | [`loan`](/api/loan) | cancel-vendor-disbursement |
| PUT /loans/`{id}`/vendor-disbursements/`{vendorDisbursementId}`/status | [`loan`](/api/loan) | update-vendor-disbursement-status |
| POST /localizations | [`loan`](/api/loan) | loan-create-localization |
| DELETE /localizations/`{id}` | [`loan`](/api/loan) | loan-delete-localization |
| PUT /localizations/`{id}` | [`loan`](/api/loan) | loan-update-localization |
| POST /matrix | [`loan`](/api/loan) | loan-create-matrix |
| GET /matrix/results/by-product-id/`{accountProductId}` | [`loan`](/api/loan) | loan-get-matrix-result-value |
| DELETE /matrix/`{id}` | [`loan`](/api/loan) | loan-delete-matrix |
| PUT /matrix/`{id}` | [`loan`](/api/loan) | loan-update-matrix |
| POST /matrix/`{id}`/columns | [`loan`](/api/loan) | loan-create-matrix-column |
| POST /matrix/`{id}`/product-maps | [`loan`](/api/loan) | loan-create-matrix-product-map |
| POST /matrix/`{id}`/results | [`loan`](/api/loan) | loan-create-matrix-result |
| POST /parameters | [`loan`](/api/loan) | loan-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`loan`](/api/loan) | loan-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`loan`](/api/loan) | loan-delete-parameter |
| PUT /parameters/`{id}` | [`loan`](/api/loan) | loan-update-parameter |
| POST /parameters/`{id}`/values | [`loan`](/api/loan) | loan-create-parameter-value |
| GET /vendor-external/by-merchant/details | [`loan`](/api/loan) | get-vendor-external-detail-list-by-merchant |
| POST /vendor-external/`{id}`/merchants | [`loan`](/api/loan) | create-vendor-external-merchant |
| DELETE /vendor-external/`{id}`/merchants/`{vendorExternalMerchantId}` | [`loan`](/api/loan) | delete-vendor-external-merchant |
| PUT /vendor-external/`{id}`/merchants/`{vendorExternalMerchantId}` | [`loan`](/api/loan) | update-vendor-external-merchant |
| GET /customer-loan-collections | [`loan-collection`](/api/loan-collection) | get-customer-loan-collection-list |
| POST /customer-loan-collections | [`loan-collection`](/api/loan-collection) | create-customer-loan-collection |
| GET /customer-loan-collections/details | [`loan-collection`](/api/loan-collection) | get-customer-loan-collection-detail-list |
| GET /customer-loan-collections/`{id}` | [`loan-collection`](/api/loan-collection) | get-customer-loan-collection-by-id |
| PUT /customer-loan-collections/`{id}`/accounting-entry-id | [`loan-collection`](/api/loan-collection) | update-customer-loan-collection-accounting-entry-id |
| PUT /customer-loan-collections/`{id}`/cancel | [`loan-collection`](/api/loan-collection) | cancel-customer-loan-collection |
| GET /customer-loan-collections/`{id}`/details | [`loan-collection`](/api/loan-collection) | get-customer-loan-collection-details-by-id |
| GET /customer-loan-collections/`{id}`/installment-delay-penalties | [`loan-collection`](/api/loan-collection) | get-installment-delay-penalty-list |
| POST /customer-loan-collections/`{id}`/installment-delay-penalties | [`loan-collection`](/api/loan-collection) | create-installment-delay-penalty |
| GET /customer-loan-collections/`{id}`/installment-delay-penalties/`{installmentDelayPenaltyId}` | [`loan-collection`](/api/loan-collection) | get-installment-delay-penalty-by-id |
| PUT /customer-loan-collections/`{id}`/installment-delay-penalties/`{installmentDelayPenaltyId}`/accounting-entry-id | [`loan-collection`](/api/loan-collection) | update-installment-delay-penalty-accounting-entry-id |
| PUT /customer-loan-collections/`{id}`/installment-delay-penalties/`{installmentDelayPenaltyId}`/status | [`loan-collection`](/api/loan-collection) | update-installment-delay-penalty-status |
| PUT /customer-loan-collections/`{id}`/installment-id | [`loan-collection`](/api/loan-collection) | update-customer-loan-collection-installment-id |
| GET /installment-delay-penalties/`{id}` | [`loan-collection`](/api/loan-collection) | get-delay-penalty-by-id |
| POST /loan-collections | [`loan-collection`](/api/loan-collection) | create-loan-collection |
| DELETE /loan-collections/`{id}` | [`loan-collection`](/api/loan-collection) | delete-loan-collection |
| PUT /loan-collections/`{id}` | [`loan-collection`](/api/loan-collection) | update-loan-collection |
| POST /loan-collections/`{id}`/delay-penalty-taxes | [`loan-collection`](/api/loan-collection) | create-loan-collection-delay-penalty-tax |
| DELETE /loan-collections/`{id}`/delay-penalty-taxes/`{delayPenaltyTaxId}` | [`loan-collection`](/api/loan-collection) | delete-loan-collection-delay-penalty-tax |
| GET /loan-collections/`{id}`/sequences | [`loan-collection`](/api/loan-collection) | get-loan-collection-sequences-by-id |
| POST /loan-collections/`{id}`/sequences | [`loan-collection`](/api/loan-collection) | create-loan-collection-sequence |
| DELETE /loan-collections/`{id}`/sequences/`{sequenceId}` | [`loan-collection`](/api/loan-collection) | delete-loan-collection-sequence |
| POST /localizations | [`loan-collection`](/api/loan-collection) | loan-collection-create-localization |
| DELETE /localizations/`{id}` | [`loan-collection`](/api/loan-collection) | loan-collection-delete-localization |
| PUT /localizations/`{id}` | [`loan-collection`](/api/loan-collection) | loan-collection-update-localization |
| POST /parameters | [`loan-collection`](/api/loan-collection) | loan-collection-create-parameter |
| GET /parameters/by-code/`{code}`/values | [`loan-collection`](/api/loan-collection) | loan-collection-get-parameter-value-list-by-parameter-code |
| DELETE /parameters/`{id}` | [`loan-collection`](/api/loan-collection) | loan-collection-delete-parameter |
| PUT /parameters/`{id}` | [`loan-collection`](/api/loan-collection) | loan-collection-update-parameter |
| POST /parameters/`{id}`/values | [`loan-collection`](/api/loan-collection) | loan-collection-create-parameter-value |
| POST /customer-virtual-transaction-detail | [`loan-reconciliation`](/api/loan-reconciliation) | create-customer-virtual-transaction-detail |
| PUT /customer-virtual-transaction-status/`{id}` | [`loan-reconciliation`](/api/loan-reconciliation) | update-customer-virtual-transaction-status |
| GET /customer-virtual-transactions | [`loan-reconciliation`](/api/loan-reconciliation) | get-customer-virtual-transaction-list |
| POST /customer-virtual-transactions | [`loan-reconciliation`](/api/loan-reconciliation) | create-customer-virtual-transaction |
| GET /get-loan-for-virtual-iban | [`loan-reconciliation`](/api/loan-reconciliation) | get-loan-for-virtual-iban |
| POST /localizations | [`loan-reconciliation`](/api/loan-reconciliation) | loan-reconciliation-create-localization |
| POST /save-and-read-clearing-transactions | [`loan-reconciliation`](/api/loan-reconciliation) | save-and-read-clearing-transactions |
| POST /save-and-read-prepaid-transactions | [`loan-reconciliation`](/api/loan-reconciliation) | save-and-read-prepaid-transactions |
| GET /settlement-files/clearing-settlement | [`loan-reconciliation`](/api/loan-reconciliation) | get-clearing-settlement-list |
| GET /settlement-files/prepaid-transactions | [`loan-reconciliation`](/api/loan-reconciliation) | get-prepaid-transaction-settlement-list |
| PUT /settlement-files/`{id}`/prepaid-transactions/`{prepaidTransactionSettlementId}` | [`loan-reconciliation`](/api/loan-reconciliation) | update-prepaid-transaction-settlement-result-status |
| POST /easy-addresses | [`money-transfer`](/api/money-transfer) | create-easy-address |
| PUT /easy-addresses/`{id}` | [`money-transfer`](/api/money-transfer) | update-easy-address |
| POST /in-banks/cancel-in-bank-transfer | [`money-transfer`](/api/money-transfer) | cancel-in-bank-transfer |
| POST /in-banks/transfer-money-to-other-account | [`money-transfer`](/api/money-transfer) | money-transfer-to-other-account |
| POST /in-banks/transfer-money-to-own-account | [`money-transfer`](/api/money-transfer) | money-transfer-to-own-account |
| GET /in-banks/`{id}` | [`money-transfer`](/api/money-transfer) | get-inbank-by-id |
| GET /incoming-fasts | [`money-transfer`](/api/money-transfer) | get-incoming-fast-list |
| POST /incoming-fasts/complete | [`money-transfer`](/api/money-transfer) | complete-incoming-fast |
| POST /incoming-fasts/complete-refund | [`money-transfer`](/api/money-transfer) | complete-refund-incoming-fast |
| GET /incoming-transfer | [`money-transfer`](/api/money-transfer) | get-incoming-transfer-list |
| PUT /incoming-transfer/`{id}` | [`money-transfer`](/api/money-transfer) | update-incoming-transfer |
| GET /interbank | [`money-transfer`](/api/money-transfer) | get-interbank-list |
| POST /interbank | [`money-transfer`](/api/money-transfer) | create-interbank |
| PUT /interbank/`{id}` | [`money-transfer`](/api/money-transfer) | update-interbank |
| POST /key-formats/by-code/`{code}`/generate | [`money-transfer`](/api/money-transfer) | money-transfer-generate-key |
| POST /moved-easy-address-transactions | [`money-transfer`](/api/money-transfer) | create-moved-easy-address-transaction |
| GET /moved-easy-address-transactions/last-success | [`money-transfer`](/api/money-transfer) | get-last-success-moved-easy-address-transaction |
| GET /outgoing-fasts | [`money-transfer`](/api/money-transfer) | get-outgoing-fast-list |
| POST /outgoing-fasts | [`money-transfer`](/api/money-transfer) | create-outgoing-fast |
| POST /outgoing-fasts/complete | [`money-transfer`](/api/money-transfer) | complete-outgoing-fast |
| POST /outgoing-fasts/complete-refund | [`money-transfer`](/api/money-transfer) | complete-refund-outgoing-fast |
| GET /outgoing-transfer | [`money-transfer`](/api/money-transfer) | get-outgoing-transfer-list |
| POST /outgoing-transfer | [`money-transfer`](/api/money-transfer) | create-outgoing-transfer |
| PUT /outgoing-transfer/`{id}` | [`money-transfer`](/api/money-transfer) | update-outgoing-transfer |
| POST /saved-transactions | [`money-transfer`](/api/money-transfer) | create-saved-transaction |
| DELETE /saved-transactions/`{id}` | [`money-transfer`](/api/money-transfer) | delete-saved-transaction |
| POST /bulk-notifications | [`notification`](/api/notification) | create-bulk-notification |
| POST /localizations | [`notification`](/api/notification) | notification-create-localization |
| DELETE /localizations/`{id}` | [`notification`](/api/notification) | notification-delete-localization |
| PUT /localizations/`{id}` | [`notification`](/api/notification) | notification-update-localization |
| POST /mail-notifications | [`notification`](/api/notification) | create-mail-notification |
| POST /mail-notifications/`{id}`/details | [`notification`](/api/notification) | create-mail-notification-detail |
| POST /parameters | [`notification`](/api/notification) | notification-create-parameter |
| DELETE /parameters/`{id}` | [`notification`](/api/notification) | notification-delete-parameter |
| PUT /parameters/`{id}` | [`notification`](/api/notification) | notification-update-parameter |
| POST /parameters/`{id}`/values | [`notification`](/api/notification) | notification-create-parameter-value |
| POST /sms-notifications | [`notification`](/api/notification) | create-sms-notification |
| POST /sms-notifications/`{id}` | [`notification`](/api/notification) | create-sms-notification-detail |
| PUT /sms-notifications/`{id}`/status | [`notification`](/api/notification) | update-sms-notification-status |
| POST /localizations | [`payback-plan`](/api/payback-plan) | payback-plan-create-localization |
| DELETE /localizations/`{id}` | [`payback-plan`](/api/payback-plan) | payback-plan-delete-localization |
| PUT /localizations/`{id}` | [`payback-plan`](/api/payback-plan) | payback-plan-update-localization |
| POST /parameters | [`payback-plan`](/api/payback-plan) | payback-plan-create-parameter |
| DELETE /parameters/`{id}` | [`payback-plan`](/api/payback-plan) | payback-plan-delete-parameter |
| PUT /parameters/`{id}` | [`payback-plan`](/api/payback-plan) | payback-plan-update-parameter |
| POST /parameters/`{id}`/values | [`payback-plan`](/api/payback-plan) | payback-plan-create-parameter-value |
| GET /payback-plans | [`payback-plan`](/api/payback-plan) | get-payback-plan-list |
| POST /payback-plans | [`payback-plan`](/api/payback-plan) | create-payback-plan |
| POST /payback-plans/bullet/calculate | [`payback-plan`](/api/payback-plan) | calculate-bullet-payback-plan |
| POST /payback-plans/variable-interest/recalculate | [`payback-plan`](/api/payback-plan) | calculate-variable-interest-payback-plan |
| GET /payback-plans/`{id}` | [`payback-plan`](/api/payback-plan) | get-payback-plan-by-id |
| GET /payback-plans/`{id}`/details | [`payback-plan`](/api/payback-plan) | get-payback-plan-details-by-id |
| GET /payback-plans/`{id}`/taxes | [`payback-plan`](/api/payback-plan) | get-payback-plan-tax-list |
| POST /localizations | [`product`](/api/product) | product-create-localization |
| DELETE /localizations/`{id}` | [`product`](/api/product) | product-delete-localization |
| PUT /localizations/`{id}` | [`product`](/api/product) | product-update-localization |
| POST /parameters | [`product`](/api/product) | product-create-parameter |
| DELETE /parameters/`{id}` | [`product`](/api/product) | product-delete-parameter |
| PUT /parameters/`{id}` | [`product`](/api/product) | product-update-parameter |
| POST /parameters/`{id}`/values | [`product`](/api/product) | product-create-parameter-value |
| POST /product-categories | [`product`](/api/product) | create-product-category |
| PUT /product-categories/`{id}` | [`product`](/api/product) | update-product-category |
| POST /product-groups | [`product`](/api/product) | create-loan-product-group |
| GET /product-groups/`{id}` | [`product`](/api/product) | get-product-group-by-id |
| PUT /product-groups/`{id}` | [`product`](/api/product) | update-loan-product-group |
| GET /products | [`product`](/api/product) | get-product-list |
| POST /products | [`product`](/api/product) | create-loan-product |
| POST /products/maturity-rate-matrix/update-rates | [`product`](/api/product) | update-product-maturity-rate |
| GET /products/`{id}` | [`product`](/api/product) | get-product-by-id |
| PUT /products/`{id}` | [`product`](/api/product) | update-loan-product |
| POST /products/`{id}`/currencies | [`product`](/api/product) | create-loan-product-currency |
| DELETE /products/`{id}`/currencies/`{productCurrencyId}` | [`product`](/api/product) | delete-loan-product-currency |
| POST /products/`{id}`/customer-maps | [`product`](/api/product) | create-loan-product-customer-map |
| DELETE /products/`{id}`/customer-maps/`{customerMapId}` | [`product`](/api/product) | delete-loan-product-customer-map |
| GET /products/`{id}`/details | [`product`](/api/product) | get-product-details-by-id |
| POST /products/`{id}`/discounts | [`product`](/api/product) | create-loan-product-discount |
| DELETE /products/`{id}`/discounts/`{discountId}` | [`product`](/api/product) | delete-loan-product-discount |
| POST /products/`{id}`/expense-items | [`product`](/api/product) | create-product-expense-item |
| DELETE /products/`{id}`/expense-items/`{productExpenseItemId}` | [`product`](/api/product) | delete-product-expense-item |
| POST /products/`{id}`/fields | [`product`](/api/product) | create-product-field |
| DELETE /products/`{id}`/fields/`{fieldId}` | [`product`](/api/product) | delete-product-field |
| POST /products/`{id}`/maturity-rate-matrix | [`product`](/api/product) | create-maturity-rate-matrix |
| DELETE /products/`{id}`/maturity-rate-matrix/`{maturityRateMatrixId}` | [`product`](/api/product) | delete-loan-product-maturity-rate-matrix |
| POST /products/`{id}`/payback-plans | [`product`](/api/product) | create-loan-product-payback-plan |
| DELETE /products/`{id}`/payback-plans/`{paybackPlanId}` | [`product`](/api/product) | delete-loan-product-payback-plan |
| POST /products/`{id}`/penalties | [`product`](/api/product) | create-loan-product-penalty |
| DELETE /products/`{id}`/penalties/`{penaltyId}` | [`product`](/api/product) | delete-loan-product-penalty |
| POST /products/`{id}`/product-tree-category-maps | [`product`](/api/product) | create-product-tree-category-map |
| PUT /products/`{id}`/special-condition | [`product`](/api/product) | update-special-condition |
| POST /products/`{id}`/taxes | [`product`](/api/product) | create-loan-product-tax |
| DELETE /products/`{id}`/taxes/`{productTaxId}` | [`product`](/api/product) | delete-loan-product-tax |
| POST /localizations | [`proposal`](/api/proposal) | proposal-create-localization |
| DELETE /localizations/`{id}` | [`proposal`](/api/proposal) | proposal-delete-localization |
| PUT /localizations/`{id}` | [`proposal`](/api/proposal) | proposal-update-localization |
| POST /parameters | [`proposal`](/api/proposal) | proposal-create-parameter |
| DELETE /parameters/`{id}` | [`proposal`](/api/proposal) | proposal-delete-parameter |
| PUT /parameters/`{id}` | [`proposal`](/api/proposal) | proposal-update-parameter |
| POST /parameters/`{id}`/values | [`proposal`](/api/proposal) | proposal-create-parameter-value |
| GET /proposals | [`proposal`](/api/proposal) | get-proposal-list |
| POST /proposals | [`proposal`](/api/proposal) | create-proposal |
| GET /proposals/by-payback-plan-id/`{paybackPlanId}`/id | [`proposal`](/api/proposal) | get-proposal-id-by-payback-plan-id |
| PUT /proposals/`{id}` | [`proposal`](/api/proposal) | update-proposal |
| GET /proposals/`{id}`/by-payback-plan-id/`{paybackPlanId}` | [`proposal`](/api/proposal) | get-proposal-payback-plan-id-by-payback-plan-id |
| GET /proposals/`{id}`/details | [`proposal`](/api/proposal) | get-proposal-details-by-id |
| GET /proposals/`{id}`/payback-plans | [`proposal`](/api/proposal) | get-payback-plan-relation-list |
| POST /proposals/`{id}`/payback-plans | [`proposal`](/api/proposal) | create-payback-plan-relation |
| POST /proposals/`{id}`/product-details | [`proposal`](/api/proposal) | create-proposal-product-detail |
| POST /customer-probability-defaults | [`risk-management`](/api/risk-management) | create-probability-default |
| GET /customer-risk-levels | [`risk-management`](/api/risk-management) | get-customer-risk-level-list |
| POST /customer-risk-levels | [`risk-management`](/api/risk-management) | create-customer-risk-level |
| PUT /customer-risk-levels/`{id}` | [`risk-management`](/api/risk-management) | update-customer-risk-level |
| POST /customer-risk-levels/`{id}`/histories | [`risk-management`](/api/risk-management) | create-customer-risk-level-history |
| PUT /customer-risk-levels/`{id}`/status | [`risk-management`](/api/risk-management) | update-customer-risk-level-status |
| POST /customer-risks | [`risk-management`](/api/risk-management) | create-customer-risk |
| GET /customer-risks/`{id}` | [`risk-management`](/api/risk-management) | get-customer-risk-by-id |
| GET /ledgers/by-ledger-code/`{ledgerCode}` | [`risk-management`](/api/risk-management) | get-risk-ledger-by-ledger-code |
| POST /localizations | [`risk-management`](/api/risk-management) | risk-management-create-localization |
| DELETE /localizations/`{id}` | [`risk-management`](/api/risk-management) | risk-management-delete-localization |
| PUT /localizations/`{id}` | [`risk-management`](/api/risk-management) | risk-management-update-localization |
| POST /parameters | [`risk-management`](/api/risk-management) | risk-management-create-parameter |
| DELETE /parameters/`{id}` | [`risk-management`](/api/risk-management) | risk-management-delete-parameter |
| PUT /parameters/`{id}` | [`risk-management`](/api/risk-management) | risk-management-update-parameter |
| POST /parameters/`{id}`/values | [`risk-management`](/api/risk-management) | risk-management-create-parameter-value |
| POST /risks | [`risk-management`](/api/risk-management) | create-risk-definition |
| GET /risks/details | [`risk-management`](/api/risk-management) | get-risk-definition-all-details |
| PUT /risks/`{id}` | [`risk-management`](/api/risk-management) | update-risk-definition |
| PUT /risks/`{id}`/active | [`risk-management`](/api/risk-management) | update-risk-definition-status |
| POST /risks/`{id}`/ledgers | [`risk-management`](/api/risk-management) | create-risk-ledger |
| DELETE /risks/`{id}`/ledgers/`{riskLedgerId}` | [`risk-management`](/api/risk-management) | delete-risk-ledger |
| POST /risks/`{id}`/query-purposes | [`risk-management`](/api/risk-management) | create-risk-query-purpose |
| DELETE /risks/`{id}`/query-purposes/`{queryPurposeId}` | [`risk-management`](/api/risk-management) | delete-risk-query-purpose |
| POST /localizations | [`template-management`](/api/template-management) | template-management-create-localization |
| DELETE /localizations/`{id}` | [`template-management`](/api/template-management) | template-management-delete-localization |
| PUT /localizations/`{id}` | [`template-management`](/api/template-management) | template-management-update-localization |
| POST /parameters | [`template-management`](/api/template-management) | template-management-create-parameter |
| DELETE /parameters/`{id}` | [`template-management`](/api/template-management) | template-management-delete-parameter |
| PUT /parameters/`{id}` | [`template-management`](/api/template-management) | template-management-update-parameter |
| POST /parameters/`{id}`/ | [`template-management`](/api/template-management) | template-management-create-parameter-value |
| POST /template-types | [`template-management`](/api/template-management) | create-template-type |
| POST /template-types/designs/create-and-upload-document/`{templateDesignId}` | [`template-management`](/api/template-management) | create-and-upload-document |
| POST /template-types/designs/create-documents-by-code/`{templateDesignCode}` | [`template-management`](/api/template-management) | create-document-list-by-code-with-template |
| POST /template-types/designs/create-documents/`{templateDesignId}` | [`template-management`](/api/template-management) | create-document-list-with-template |
| DELETE /template-types/`{id}` | [`template-management`](/api/template-management) | delete-template-type |
| GET /template-types/`{id}` | [`template-management`](/api/template-management) | get-template-type-by-id |
| PUT /template-types/`{id}` | [`template-management`](/api/template-management) | update-template-type |
| POST /template-types/`{id}`/designs | [`template-management`](/api/template-management) | create-template-design |
| DELETE /template-types/`{id}`/designs/`{templateDesignId}` | [`template-management`](/api/template-management) | delete-template-design |
| PUT /template-types/`{id}`/designs/`{templateDesignId}` | [`template-management`](/api/template-management) | update-template-design |
| POST /template-types/`{id}`/designs/`{templateDesignId}`/contexts | [`template-management`](/api/template-management) | create-template-design-context |
| PUT /template-types/`{id}`/designs/`{templateDesignId}`/contexts/`{templateDesignContextId}` | [`template-management`](/api/template-management) | update-template-design-context |
| PUT /template-types/`{id}`/designs/`{templateDesignId}`/contexts/`{templateDesignContextId}`/active | [`template-management`](/api/template-management) | update-template-design-context-status |
| POST /template-types/`{id}`/designs/`{templateDesignId}`/fields | [`template-management`](/api/template-management) | create-template-design-field |
| PUT /template-types/`{id}`/designs/`{templateDesignId}`/fields/`{templateDesignFieldId}` | [`template-management`](/api/template-management) | update-template-design-field |
| POST /template-types/`{id}`/tools | [`template-management`](/api/template-management) | create-template-type-tool |
| DELETE /template-types/`{id}`/tools/by-tool/`{tool}` | [`template-management`](/api/template-management) | delete-template-type-tool |
| GET /parameters/by-code/`{code}`/default-value | [`time-deposit`](/api/time-deposit) | time-deposit-get-parameter-default-value-by-parameter-code |
| GET /time-deposits/by-account-id/`{accountId}`/accrual-amount | [`time-deposit`](/api/time-deposit) | get-interest-accrual-amount-by-account-id |
| GET /time-deposits/by-account-id/`{accountId}`/preview/maturity-end | [`time-deposit`](/api/time-deposit) | get-interest-amount-by-account-id |
| GET /time-deposits/by-account-product-id/`{accountProductId}`/preview/interest-amount | [`time-deposit`](/api/time-deposit) | get-interest-amount-by-product-id |
| POST /limit-items | [`transaction-limit`](/api/transaction-limit) | create-limit-item |
| PUT /limit-items/`{id}` | [`transaction-limit`](/api/transaction-limit) | update-limit-item |
| POST /limit-items/`{id}`/dimensions | [`transaction-limit`](/api/transaction-limit) | create-limit-item-dimension |
| POST /limit-items/`{id}`/service-maps | [`transaction-limit`](/api/transaction-limit) | create-limit-item-service-map |
| POST /localizations | [`transaction-limit`](/api/transaction-limit) | transaction-limit-create-localization |
| DELETE /localizations/`{id}` | [`transaction-limit`](/api/transaction-limit) | transaction-limit-delete-localization |
| PUT /localizations/`{id}` | [`transaction-limit`](/api/transaction-limit) | transaction-limit-update-localization |
| POST /parameters | [`transaction-limit`](/api/transaction-limit) | transaction-limit-create-parameter |
| DELETE /parameters/`{id}` | [`transaction-limit`](/api/transaction-limit) | transaction-limit-delete-parameter |
| PUT /parameters/`{id}` | [`transaction-limit`](/api/transaction-limit) | transaction-limit-update-parameter |
| POST /parameters/`{id}`/ | [`transaction-limit`](/api/transaction-limit) | transaction-limit-create-parameter-value |

:::note
**What was examined, and what was not said.**

4984 published operation(s) were examined. 3775 of them carry neither mark, and this portal makes no behavioural statement about those at all — that is an absence of a published statement, not a guarantee that they behave as plain handlers.
:::
