IDScan.net
Search Results for

    Show / Hide Table of Contents

    Pennsylvania DMV Data Verification

    The Pennsylvania DMV Data Verification check allows you to verify the driver's license information provided by an individual against the Pennsylvania DMV database. This check can help you confirm the validity of a driver's license and ensure that the information provided matches the records on file with the Pennsylvania DMV.

    While this is the same service as the standard USA DMV Data Verification, the Pennsylvania DMV requires additional consent from the end user before the check can be performed. For more information on how to implement the consent form, please refer to the Consent Feature documentation.

    consentGiven Field

    For the Pennsylvania DMV specifically, an additional field called consentGiven must be included in the request body when performing the check. This field should be set to true if the end user has provided consent, and false if they have not.

    {
      "firstName": "SAMPLE",
      "lastName": "LICENSE",
      "dateOfBirths": "1965-02-14",
      "state": "PA",
      "consentGiven": true," //for Pennsylvania DMV, this field is required and must be set to true if the end user has provided consent
      "services": [
        "F1366C39-D0CD-458C-81F8-EFD7B0753A5B"
      ],
      "driverLicenseNumber": "L252784655541"
    }
    

    The following error message will be returned if the feature is not enabled for your account:

    {
        "serviceId": "f1366c39-d0cd-458c-81f8-efd7b0753a5b",
        "serviceName": "DMV Verification",
        "serviceDescription": "Driver License Data Verification",
        "error": "You haven't a permission to send requests to PA state. Please contact support@idscan.net for more details.",
        "success": false,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "metadata": {},
        "profiles": []
    }
    

    The following error message will be returned if the consentGiven field is not included in the request body or if it is set to false:

    {
        "serviceId": "f1366c39-d0cd-458c-81f8-efd7b0753a5b",
        "serviceName": "DMV Verification",
        "serviceDescription": "Driver License Data Verification",
        "error": "PA requires written consent from the individual whose identity is being verified. Check field 'ConsentGiven' and try again.",
        "success": false,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "metadata": {},
        "profiles": []
    }
    
    Back to top IDScan.net IDScan.net GitHub