Get Scorecard Config

Scorecard config is used to adjust the configuration of the scorecard matrix to calculate the scorecard results.

Overview

Get Scorecard Config is to get the Configuration files that are set for the Scorecard Results in order to have a clear understanding of how the scorecard works or how the metrics/logic is implemented into the Scorecard.

Steps:

  1. Place the JourneyId and the content mentioned in the API Method below.

  2. After expanding API method, the user can place the details accordingly following this Example.

  3. Upon successfully calling, the user will get a configuration file that contains the metrics of the scorecard.

API Method

GET https://ekycportaldemo.innov8tif.com/api/ekyc/scorecardConfig

Request Body

NameTypeDescription

docType*

string

For passport: -passport For Malaysia documents(old/new IC): -mykad_new -mykad_old For the rest, please check below: https://api2-ekycapis.innov8tif.com/okaydoc/okaydoc-all/supported-documents/non-passport/supported-document

password*

string

To be assigned by Innov8tif

username*

string

To be assigned by Innov8tif

Response Code Block
{
    "status": "success",
    "messageCode": null,
    "message": null,
    "lastModifiedDate": "01-May-2020 00:00",
    "configList": [
        "liveFaceCheck@P:>=0.5;F:otherwise",
        "facialVerification@P:>=75;F:otherwise",
        "mrzVizConsistencyCheck@P:=3,=6;F:otherwise",
        "checkDigitValidation@P:=1,=4;F:otherwise"
    ],
    "scorecardList": [
        "F=suspicious",
        "PF=suspicious",
        "PPF=suspicious",
        "PPPF=cautious",
        "PPPP=clear",
        "otherwise=cautious"
    ]
}

Input Example

{
    "username": "",
    "password": "",
    "docType": "passport" 
}

Postman Collection

Last updated