DateOfBirthMatch
public enum DateOfBirthMatch : String, Encodable
Whether or not IDmission’s ID Verification Team will perform a dateOfBirthMatch of the submitted form in the event it is not auto-decisioned. Default is no
.
-
Y : The system will do a fuzzy match between the dob submitted in the request against the idDateOfBirth extracted from the ID Document.
Declaration
Swift
case yes = "Y"
-
N : The system will NOT match the dob submitted in the request against the idDateOfBirth extracted from the ID Document
Declaration
Swift
case no = "N"
-
E : The system will do an exact match between the dob submitted in the request against the idDateOfBirth extracted from the ID Document RECOMMEND using E for dateOfBirth matching
Declaration
Swift
case forced = "E"