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