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 callAction endpoint. Visit the callAction page for more details.

Copy
POST <host_address>/api/openApi/CallAction
Content-Type: application/json
            
{
    "Request": {
    "ActionName": "FTOS_CB_ApproveRescheduleOverduesEvent",
    "Data": "{\"FTOS_CB_ApproveOverdueRescheduleEvent\":{\"eventNo\":\"<event_number>\"}}"
  },
    "ApiInfo":{
        "UserName":"<user_name>",
        "Token":"<access_token>"
    }
}

Here's a list of the available parameters:

Parameter Description
host_address URL of the High Productivity Fintech Infrastructure server.
access_token Access token used to connect to the API endpoint. For details, see GetToken.
user_name The username of an existing user account on the High Productivity Fintech Infrastructure, previously used to get the access token.
Data Key-value pairs of any input parameters to be passed to the internal endpoint in JSON format. Double quotes that enclose string parameter values must be escaped with backslash characters, eg.: \"string value\".
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