Policy Claim Data API

The Policy Claim Data API is used to log the policy claim data into the system.

Server Automation Script

FTOS_INSPA_AddClaimFilesLog: This script is called with an object as data and calls the checkObjectFieldsAndInsert function from the FTOS_INSPA_AddClaimFilesLogLibrary server automation script library.

An example of calling the function is given below:

Copy
let p = {
    callDate: '2022-01-14',
    callSource: 'https://www.testexample.com/',
    callUser: 'TestUser',
    policyNo: '80001379',
    claimFileNo: '00001',
    lossDate: '2022-01-10',
    occuredRisk: 'Personal Accident',
    affectedCoverage: 'Death by accidents',
    currentReserve: '5000',
    currentIndemintyPaid: '0',
    currency: 'EUR',
    claimNotificationDate: '2022-01-12',
    claimFileStatus: 'Test lorem ipsum'
};
ebs.callActionByNameAsync("FTOS_INSPA_AddClaimFilesLog", p)
.then(
    function(e){
        console.log(e.UIResult)
    }
);

 

Endpoint

FTOS_INSPA_AddClaimFilesLog: This endpoint is used to run the FTOS_INSPA_AddClaimFilesLog server automation script.

Server Automation Script Library