United States (DMV)
Age and Identity verification via state DMV databases in the United States.
AgeMatch5.0.DMV
POST
https://production.idresponse.com/process/comprehensive/gateway
Make an HTTPS POST request with the following body parameters to find out if the target has provided attributes that match the document. You will receive a synchronous response in 2-3 seconds with a result object that includes an action, detail and issues object.
Request Body
Name | Type | Description |
---|---|---|
user | string | Your account's API username |
pass | string | Your account's API password |
service | string | The service name (AgeMatch5.0.DMV) |
reference | string | A unique identifier for your customer |
target | object | The individual being sent for verification |
age | string | The age to check (must be sent like "age+" i.e. "18+", "21+" etc.) |
document | object | The data from the document |
fn | string | The target's document first name |
mn | string | The target's document middle name |
ln | string | The target's document last name |
suffix | string | The target's document name suffix |
addr | string | The target's document street address (line 1 and line 2) |
city | string | the target's document city |
state | string | The target's document state |
zip | string | The target's document zip |
dob | string | The target's document Date of Birth (YYYYMMDD format) |
number | string | The target's document ID number |
expiration | string | The target's document expiration date |
issue | string | The target's document issue date |
height | string | The target's document height (provided in feet and inches i.e. 5 feet 10 inches is presented as "510") |
weight | string | The target's document weight |
eye_color | string | The target's document eye color |
gender | string | The target's document gender m = male f = female |
category | string | The target's document category 1 = Driver License 2 = Driver Permit 3 = ID Card (if none is supplied then Driver License will be assumed) |
Service testing is done with the live data source. Veratad will provide you with an amount of free transactions for testing purposes.
Sample Request Body
Action and Detail Responses
The following are all values that will be returned in the result object of the response.
Action | Detail | Description |
FAIL | NO MATCH | No match found with document ID number |
REVIEW | TRANSACTION REQUIRES FURTHER ATTENTION | Target found, but at least one identity attribute provided does not match. This will also populate the "issues" object with a list of the identity attributes that did not match. See full list below. |
PASS | ALL CHECKS PASSED | Target was found and has passed all verification checks |
PASS | VERIFICATION EXISTS | If Veratad storage is active then an already verified customer will PASS without the search at the data source |
Issues Responses
When a transaction returns as REVIEW then there will be a list of issues. This list can include any of the below values.
Issue | Description |
FIRST NAME CHECK FAILED | The first name provided does not match data associated with document number |
MIDDLE NAME CHECK FAILED | The middle name provided does not match data associated with document number |
LAST NAME CHECK FAILED | The last name provided does not match data associated with document number |
NAME SUFFIX CHECK FAILED | The name suffix provided does not match data associated with document number |
ADDRESS CHECK FAILED | The address provided does not match data associated with document number |
ADDRESS POD CHECK FAILED | The address point of delivery does not match data associated with document number |
CITY CHECK FAILED | The city provided does not match data associated with document number |
STATE CHECK FAILED | The state provided does not match data associated with document number |
ZIP CHECK FAILED | The zip provided does not match data associated with document number |
DATE OF BIRTH CHECK FAILED | The Date of Birth provided does not match data associated with document number |
ID EXPIRATION CHECK FAILED | The ID expiration date provided does not match data associated with the document number |
ID ISSUE CHECK FAILED | The ID issue date provided does not match data associated with the document number |
GENDER CHECK FAILED | The gender provided does not match data associated with the document number |
EYE COLOR CHECK FAILED | The eye color provided does not match data associated with the document number |
WEIGHT CHECK FAILED | The weight provided does not match data associated with the document number |
HEIGHT CHECK FAILED | The height provided does not match data associated with the document number |
AGE CHECK FAILED | The Date of Birth provided is under the age requirement |
CURRENT DOCUMENT CHECK FAILED | The expiration date provided is in the past |
Rules
AgeMatch5.0.DMV will process with the default base ruleset:
The base ruleset will return a PASS when:
A match is found
There are no issues
The base ruleset will return a REVIEW when:
A match is found
The target's identity attributes do not all match
The base ruleset will return a FAIL when:
A match is not found
Last updated