Screen Name

Request

curl --location --request PUT 'https://api.insights-periculum.io/verify/aml-screen' 
--header 'Authorization: Bearer string_encrypted_accesst_token' 
--header 'Content-Type: application/json' 
--data-body'{
    "first_name": "John",
    "middle_name": "Asake",
    "last_name": "Doe",
    "date_of_birth": "1997-08-18"
}'

Parameters

NameDescriptionTypeRequired
first_nameCustomer's First nameintYes
middle_nameMiddle namestringNo
last_nameLast namestringYes
date_of_birthDate of BirthstringYes

Response

{
    "entity": {
        "MatchResults": [
            {
                "MatchType": "Person",
                "Name": "John Doe",
                "ProfileId": "4e01434d-6434-4375-804a-cd32d62824f7",
                "NameMatchScore": 0.2
            }
        ]
    }
}