This object represents the information extracted from the documents about the individual performing the verification.
| Field | Type | Values | Notes |
|---|---|---|---|
| title | String | Identified title of the end user. | |
| forename | String | Identified forename of the end user. | |
| surname | String | Identified surname of the end user. | |
| gender | String | "MALE" "FEMALE" "UNKNOWN" | Identified gender of the end user. |
| dob | DOB Object | { "day": 19, "month": 11, "year": 1982 } | A JSON object to represent the date of birth. Each field is an int. |
| address | Address Object | { "buildingNumber": "10", "address1": "Prime Minister First Lord Of The Treasury", "address2": "10 Downing Street", "postTown": "London", "county": "London", "country": "England", "postCode": "SW1A 2AA" } | A JSON object to represent the address of the individual. The fields sent depend on the address, so treat each as optional apart from the postCode that will always be present in the object. Please note that this address is the end user populated address, unless this functionality is disabled on the account. If disabled then the address will be the one extracted from the document. |
Example JSON for the Person Object:
{
"title": "MR",
"forename": "JOHN",
"surname": "DOE",
"gender": "MALE",
"dob": {
"day": 19,
"month": 11,
"year": 1982
},
"address": {
"buildingNumber": "10",
"address1": "Prime Minister First Lord Of The Treasury",
"address2": "10 Downing Street",
"postTown": "London",
"county": "London",
"country": "England",
"postCode": "SW1A 2AA"
}
}