DMV Test Cases
You can test your integration with DMV Screening Service by sending one of the special test requests below with your TEST API key. Test requests are free, so you will always be sure that your integration is successful.
PASS Profile
- For getting usual "PASS" profile, send the request data below:
{
"firstName": "SAMPLE",
"lastName": "LICENSE",
"dateOfBirths": "1965-02-14",
"state": "FL",
"services": [
"F1366C39-D0CD-458C-81F8-EFD7B0753A5B"
],
"driverLicenseNumber": "L252784655541"
}
You will get this successful response:
[
{
"serviceId": "f1366c39-d0cd-458c-81f8-efd7b0753a5b",
"serviceName": "DMV Verification",
"serviceDescription": "Driver License Data Verification",
"error": null,
"success": true,
"locationId": null,
"readOnlyAccessLocationIds": null,
"profiles": [
{
"internalId": null,
"firstName": "SAMPLE",
"middleName": "DRIVER",
"lastName": "LICENSE",
"fullName": null,
"dateOfBirths": "02/14/1965",
"sex": "M",
"address": "2900 APALACHEE PKWY",
"countryName": null,
"countryCode": null,
"street1": null,
"street2": null,
"city": "TALLAHASSEE",
"state": "FL",
"zipCode": "80925-0000",
"county": null,
"convictiontype": null,
"aliases": null,
"offenses": null,
"photoUrl": null,
"source": null,
"otherInformation": null,
"idNumber": null,
"verificationResult": null,
"driverLicenseVerificationResult": {
"documentCategoryMatch": true,
"personLastNameExactMatch": true,
"personLastNameFuzzyPrimaryMatch": false,
"personLastNameFuzzyAlternateMatch": false,
"personFirstNameExactMatch": true,
"personFirstNameFuzzyPrimaryMatch": false,
"personFirstNameFuzzyAlternateMatch": false,
"personMiddleNameExactMatch": true,
"personMiddleNameFuzzyPrimaryMatch": false,
"personMiddleNameFuzzyAlternateMatch": false,
"personMiddleInitialMatch": false,
"personBirthDateMatch": true,
"driverLicenseIssueDateMatch": true,
"driverLicenseExpirationDateMatch": true,
"driverLicenseNumberMatch": true,
"addressLine1Match": true,
"addressLine2Match": null,
"addressCityMatch": true,
"addressStateCodeMatch": true,
"addressZIP5Match": true,
"addressZIP4Match": true,
"personSexCodeMatch": true,
"addressLine1FuzzyMatch": null
}
}
]
}
]
FAIL Profile
- For getting "FAIL" profile, send the request data below:
{
"firstName": "LEARNERS",
"lastName": "PERMIT",
"dateOfBirths": "1975-09-08",
"state": "TX",
"services": [
"F1366C39-D0CD-458C-81F8-EFD7B0753A5B"
],
"driverLicenseNumber": "000003134"
}
You will get this successful response:
[
{
"serviceId": "f1366c39-d0cd-458c-81f8-efd7b0753a5b",
"serviceName": "DMV Verification",
"serviceDescription": "Driver License Data Verification",
"error": null,
"success": true,
"locationId": null,
"readOnlyAccessLocationIds": null,
"profiles": [
{
"internalId": null,
"firstName": "LEARNERS",
"middleName": "SAMPLE",
"lastName": "PERMIT",
"fullName": null,
"dateOfBirths": "08/09/1975",
"sex": "F",
"address": "123 SOME ST.",
"countryName": null,
"countryCode": null,
"street1": null,
"street2": null,
"city": "MADISON",
"state": "TX",
"zipCode": "12345-0000",
"county": null,
"convictiontype": null,
"aliases": null,
"offenses": null,
"photoUrl": null,
"source": null,
"otherInformation": null,
"idNumber": null,
"verificationResult": null,
"driverLicenseVerificationResult": {
"documentCategoryMatch": null,
"personLastNameExactMatch": null,
"personLastNameFuzzyPrimaryMatch": null,
"personLastNameFuzzyAlternateMatch": null,
"personFirstNameExactMatch": null,
"personFirstNameFuzzyPrimaryMatch": null,
"personFirstNameFuzzyAlternateMatch": null,
"personMiddleNameExactMatch": null,
"personMiddleNameFuzzyPrimaryMatch": null,
"personMiddleNameFuzzyAlternateMatch": null,
"personMiddleInitialMatch": null,
"personBirthDateMatch": null,
"driverLicenseIssueDateMatch": null,
"driverLicenseExpirationDateMatch": null,
"driverLicenseNumberMatch": false,
"addressLine1Match": null,
"addressLine2Match": null,
"addressCityMatch": null,
"addressStateCodeMatch": null,
"addressZIP5Match": null,
"addressZIP4Match": null,
"personSexCodeMatch": null,
"addressLine1FuzzyMatch": null
}
}
]
}
]