The Identity Verification API is designed to verify identity information against stored data records from various databases. It provides a reliable way to ensure identity verification based on multiple data points, including personal information and address details.
Contains the aggregate score from the verification process.
globalResult.totalScore
integer
Aggregate score from the verification process. Values include: 0 (Verification failed), 50 (No match found), 75 (Partial match, review needed), 100 (Verification successful).
resultDetails
array
Lists detailed match results from various data sources.
resultDetails.datasource
string
Identifier for the data source used in verification.
resultDetails.country
string
Country associated with the data source.
resultDetails.matches
array of MatchRecord
Detailed match results.
resultDetails.matches.record
string
Type of record matched.
resultDetails.matches.match
string
Result of the match against the record. Possible values: full (Full match), partial (Partial match), not-present (Record not present in the data source).
{"raw":false,// Optional: Flag to request raw data return. Defaults to false."identity":{"firstName":"John",// Required: First name of the individual."lastName":"Doe",// Required: Last name of the individual."nationalId":"123456789",// Required: National identification number."birthDate":"1985/05/15"// Required: Birthdate of the individual (format: yyyy/mm/dd).},"address":{"street":"Main Street",// Required: Street name of the address."houseNumber":"123",// Required: House or building number."building":"Apt 4B",// Optional: Building name or description."postalCode":"10001",// Required: Postal or ZIP code of the address."city":"New York",// Required: City of the address."district":"Manhattan",// Optional: District or borough of the address."province":"NY",// Optional: Province or state of the address."countryCode":"US"// Required: ISO country code of the address.},"phone":{"phoneNumber":"+1234567890"// Optional: Phone number including international dialing code.}}