Test Case Overview
Test case | Description |
---|
DL000001 | All fields match exactly |
DL000002 | No fields match exactly |
DL000003 | Street address does not match |
DL000004 | City in address does not match |
DL000005 | State in address does not match |
DL000006 | ZIP-5 in address does not match |
DL000007 | ZIP-4 in address does not match |
DL000008 | Document category does not match |
DL000009 | Drivers license expiration date does not match |
DL000010 | Drivers license issue date does not match |
DL000011 | Eye color does not match |
DL000012 | Height does not match |
DL000013 | Weight does not match |
DL000014 | Sex does not match |
DL000015 | First w/ fuzzy match, not exact match |
DL000016 | Middle w/ fuzzy match, not exact match |
DL000017 | Last w/ fuzzy match, not exact match |
DL000018 | All name fields with fuzzy match, not exact match |
DL000019 | Middle initial matches, but middle name does not match |
DL000020 | Name suffix does not match |
DL000021 | DL number does not match |
DL000022 | Some fields could not be matched because the DMV/MVD/MVA does not have the data |
DL000023 | Very long first and last name (which are truncated) but all fields still match |
DL000024 | No middle name, all fields matching |
Test Case 1
All fields match exactly
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000001 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000001",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 2
No fields match exactly
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000002 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | FALSE |
address_line1_match_indicator | FALSE |
address_line2_match_indicator | FALSE |
address_state_code_match_indicator | FALSE |
address_zip4_match_indicator | FALSE |
address_zip5_match_indicator | FALSE |
document_category_match_indicator | FALSE |
drivers_license_expiration_date_match_indicator | FALSE |
drivers_license_issue_date_match_indicator | FALSE |
drivers_license_number_match_indicator | FALSE |
person_birth_date_match_indicator | FALSE |
person_eye_color_match_indicator | FALSE |
person_first_name_exact_match_indicator | FALSE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | FALSE |
person_last_name_exact_match_indicator | FALSE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | FALSE |
person_middle_name_exact_match_indicator | FALSE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | FALSE |
person_sex_code_match_indicator | FALSE |
person_weight_match_indicator | FALSE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000002",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 3
Street address does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000003 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | FALSE |
address_line2_match_indicator | FALSE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000003",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 4
City in address does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000004 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | FALSE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000004",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 5
State in address does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000005 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | FALSE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000005",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 6
ZIP-5 in address does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000006 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | FALSE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000006",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 7
ZIP-4 in address does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000007 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | FALSE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000007",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 8
Document category does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000008 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | FALSE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000008",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 9
Drivers license expiration date does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000009 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000009",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 10
Drivers license issue date does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000010 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | FALSE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000010",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 11
Eye color does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000011 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | FALSE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000011",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 12
Height does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000012 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | FALSE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000012",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 13
Weight does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000013 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | FALSE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000013",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 14
Sex does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000014 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | FALSE |
person_weight_match_indicator | FALSE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000014",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 15
First w/ fuzzy match, not exact match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000015 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | FALSE |
person_first_name_fuzzy_alternate_match_indicator | TRUE |
person_first_name_fuzzy_primary_match_indicator | TRUE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000015",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 16
Middle w/ fuzzy match, not exact match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000016 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | FALSE |
person_middle_name_fuzzy_alternate_match_indicator | TRUE |
person_middle_name_fuzzy_primary_match_indicator | TRUE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000016",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 17
Last w/ fuzzy match, not exact match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000017 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | FALSE |
person_last_name_fuzzy_alternate_match_indicator | TRUE |
person_last_name_fuzzy_primary_match_indicator | TRUE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000017",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 18
All name fields with fuzzy match, not exact match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000018 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | FALSE |
person_first_name_fuzzy_alternate_match_indicator | TRUE |
person_first_name_fuzzy_primary_match_indicator | TRUE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | FALSE |
person_last_name_fuzzy_alternate_match_indicator | TRUE |
person_last_name_fuzzy_primary_match_indicator | TRUE |
person_middle_initial_match_indicator | FALSE |
person_middle_name_exact_match_indicator | FALSE |
person_middle_name_fuzzy_alternate_match_indicator | TRUE |
person_middle_name_fuzzy_primary_match_indicator | TRUE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000018",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 19
Middle initial matches, but middle name does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000019 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | FALSE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000019",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 20
Name suffix does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000020 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | FALSE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000020",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 21
DL number does not match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000021 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | FALSE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000021",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 22
Some fields could not be matched because the DMV/MVD/MVA does not have the data
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000022 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | Quincy |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | FALSE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | NULL |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | NULL |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | NULL |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | NULL |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000022",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "Quincy",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Test Case 23
Very long first and last name (which are truncated) but all fields still match
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000023 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | JohnAAAAAAAAAAAAAAAAAAAAAA |
person_height_measure | 600 |
person_middle_name | QuincyAAAAAAAAAAAAAAAAAAAAAAA |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | DoeAAAAAAAAAAAAAAAAAAAAAAAAA |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | TRUE |
person_middle_name_exact_match_indicator | TRUE |
person_middle_name_fuzzy_alternate_match_indicator | FALSE |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000023",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "JohnAAAAAAAAAAAAAAAAAAAAAA",
"person_height_measure": "600",
"person_middle_name": "QuincyAAAAAAAAAAAAAAAAAAAAAAA",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "DoeAAAAAAAAAAAAAAAAAAAAAAAAA",
"person_weight_measure": "180"
}
}'
Test Case 24
No middle name, all fields matching
Request parameters
Name | Value |
---|
address_delivery_point_text_1 | 1515 Oak Street |
address_delivery_point_text_2 | APT 123 |
document_category_code | 1 |
drivers_license_expiration_date | 20300401 |
drivers_license_issue_date | 20100401 |
identification_id | DL000024 |
location_city_name | Phoenix |
location_postal_code | 85000 |
location_state_us_postal_service_code | AZ |
message_destination_id | AZ |
person_birth_date | 19700401 |
person_eye_color_code | GRN |
person_given_name | John |
person_height_measure | 600 |
person_middle_name | |
person_name_suffix_text | JR |
person_sex_code | 1 |
person_sur_name | Doe |
person_weight_measure | 180 |
Response parameters
Name | Value |
---|
address_city_match_indicator | TRUE |
address_line1_match_indicator | TRUE |
address_line2_match_indicator | TRUE |
address_state_code_match_indicator | TRUE |
address_zip4_match_indicator | TRUE |
address_zip5_match_indicator | TRUE |
document_category_match_indicator | TRUE |
drivers_license_expiration_date_match_indicator | TRUE |
drivers_license_issue_date_match_indicator | TRUE |
drivers_license_number_match_indicator | TRUE |
person_birth_date_match_indicator | TRUE |
person_eye_color_match_indicator | TRUE |
person_first_name_exact_match_indicator | TRUE |
person_first_name_fuzzy_alternate_match_indicator | FALSE |
person_first_name_fuzzy_primary_match_indicator | FALSE |
person_height_match_indicator | TRUE |
person_last_name_exact_match_indicator | TRUE |
person_last_name_fuzzy_alternate_match_indicator | FALSE |
person_last_name_fuzzy_primary_match_indicator | FALSE |
person_middle_initial_match_indicator | NULL |
person_middle_name_exact_match_indicator | NULL |
person_middle_name_fuzzy_alternate_match_indicator | NULL |
person_middle_name_fuzzy_primary_match_indicator | FALSE |
person_name_suffix_match_indicator | TRUE |
person_sex_code_match_indicator | TRUE |
person_weight_match_indicator | TRUE |
replay | NULL |
transaction_locator_id | UUID |
Example cURL request
curl -X "POST" "https://idproof-cert.trusona.net/api/v2/verifications" \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR API TOKEN>' \
-d $'{
"aamva": {
"address_delivery_point_text_1": "1515 Oak Street",
"address_delivery_point_text_2": "APT 123",
"document_category_code": "1",
"drivers_license_expiration_date": "20300401",
"drivers_license_issue_date": "20100401",
"identification_id": "DL000024",
"location_city_name": "Phoenix",
"location_postal_code": "85000",
"location_state_us_postal_service_code": "AZ",
"message_destination_id": "AZ",
"person_birth_date": "19700401",
"person_eye_color_code": "GRN",
"person_given_name": "John",
"person_height_measure": "600",
"person_middle_name": "",
"person_name_suffix_text": "JR",
"person_sex_code": "1",
"person_sur_name": "Doe",
"person_weight_measure": "180"
}
}'
Further Reading
Trusona ID Proofing Integration Guide