FTOS_CB_AddUpdateRescheduleOverdues

Adds or updates a record in the FTOS_CB_ContractEvent entity representing an event to reschedule a loan contract repayment notification that is overdue. The entire repayment schedule is recalculated considering this event. The set of parameters sent via the request body determines the operation performed at the database level.

Syntax

The FTOS_CB_AddUpdateRescheduleOverdues custom endpoint is called from within the Endpoint API endpoint. Visit the Endpoint API page for more details.

Copy
POST <host_address>/ftosapi/automation-processors/actions/FTOS_CB_AddUpdateRescheduleOverdues
Content-Type: application/json
            
{
    "contractNo":"<contract_number>",
    "contractID":"<contract_ID>",
    "eventNo":"<event_number>",
    "overdueNotifications":
        [
            {"notificationNo":"<notification_number>"
            }
        ],
    "decreaseInstallment":<true_or_false>,
    "externalIdentifier":"<external_identifier_of_the_transaction>"
}

Here's a list of the available parameters:

Parameter Description
host_address URL of the FintechOS Platform server.
contractNo Mandatory if contractId is not filled. The number of the contract.
contractId Mandatory if contractNo is not filled. The identifier of the contract.
eventNo Mandatory only for update operations. Do not send it for add operations. The number of the payment reschedule event.
overdueNotifications Mandatory. An array of objects with attribute notificationNo, representing the notifications selected for reschedule.
notificationNo The number of the notification which has to be rescheduled.
decreaseInstallment Mandatory. Possible values: true or false. If you send true, then the installment number is decreased.
externalIdentifier Optional, string. The external identifier of the transaction.

Response

The response indicates the result of the code execution, specifically the result of creating or updating a record in the FTOS_CB_ContractEvent entity . The entire repayment schedule is recalculated considering this event.

Example