Get Password Details from API

Options

Hii,

we are trying to get the results @with passport details.

{

"secondaryFields": [{

"typeId": "SFCT_3",

"value": "USA"

}],

"entityType": "INDIVIDUAL",

"groupId": "5nzbfqao1qzg1fe6dxbsok405",

"providerTypes": ["WATCHLIST"],

"name": "AAA",

"nameTransposition": true,

"passportCheck": [{

"typeId": "SFCT_8",

"value": "AAA"

}]

}

Above mentioned request, returning 2 results and After i changed like this,

{

"secondaryFields": [{

"typeId": "SFCT_3",

"value": "USA"

}],

"entityType": "INDIVIDUAL",

"groupId": "5nzbfqao1qzg1fe6dxbsok405",

"providerTypes": ["WATCHLIST"],

"name": "AAA",

"nameTransposition": true,

"passportCheck": [{

"typeId": "SFCT_8",

"value": "BBB"

}]

}

i have got same result as pervious one. i need to verify is it correct?

Best Answer

  • prabhjyot.mandla
    Answer ✓

    @Koshila,

    Thanks for your time over call.

    As discussed, the below format is used for performing a passport check using the API -

    "providerTypes": [
    "WATCHLIST","PASSPORT_CHECK"
        ],
                "secondaryFields": [{
                        {
                            "typeId": "SFCT_8",
                            “value ": "XXXXXX"
                        },
                        {
                            "typeId": "SFCT_9",
                            "value": "XXXX"
                        },
                        {
                            "typeId": "SFCT_10",
                            "value": "MALE"
                        },
                        {
                            "typeId": "SFCT_11",
                             "value": "USA"
                        },
                        {
                            "typeId": "SFCT_12",
                            "value": "USA"
                        },
                        {
                            "typeId": "SFCT_13",
                            "dateTimeValue": "YYYY-MM-DD"
                        },
                        {
                            "typeId": "SFCT_14",
                            "value": "PASSPORT "
                        },
                        {
                            "typeId": "SFCT_15",
                            "value": "XXXXXXXXXX"
                        },
                        {
                            "typeId": "SFCT_16",
                            "dateTimeValue": "YYYY-MM-DD"
                        }
                    ]

    Hope this clarifies your concern.

Answers