FTOS_CB_ApproveRescheduleOverduesEvent
Changes the business status of a record from the FTOS_CB_ContractEvent entity representing a reschedule overdue notification event to Approved.
Syntax
The FTOS_CB_ApproveRescheduleOverduesEvent custom endpoint is called from within the Endpoint API endpoint. Visit the Endpoint API page for more details.
POST <host_address>/ftosapi/automation-processors/actions/FTOS_CB_ApproveRescheduleOverduesEvent
Content-Type: application/json
{
"eventNo":"<event_number>"
}
Here's a list of the available parameters:
| Parameter | Description |
|---|---|
| host_address | URL of the FintechOS Platform server. |
| eventNo | Mandatory only for update operations. The number of the payment holiday event. |
Response
The response indicates the result of the code execution, specifically the result of approving a contract reschedule overdue payment event.
Example
To approve a contract reschedule overdue payment event, a record in the FTOS_CB_ContractEvent entity, send the following request, changing the parameter values with your desired values.
Request
POST https://FintechOSStudio/ftosapi/automation-processors/actions/FTOS_CB_ApproveRescheduleOverduesEvent
Content-Type: application/json
{
"eventNo":"ECB1831"
}
Response
{
"eventIdentifier":"ECB1831",
"isSuccess":true
}