IDScan.net
Search Results for

    Show / Hide Table of Contents

    Canadian DMV Test Cases

    You can test your integration with Canadian 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.

    Not Completed Status

    Unfortunately, there is no way to test 'Not Completed' Status, because it appears when there is an issue on the Jurisdiction side. This status does not count against your subscription quota. If you receive this status, we recommend waiting 15 minutes and then submitting the same driver's license information again.

    Valid Status

    To get a 'Valid' (Code 1) license verification status, send the request data below (metadata field is custom, feel free to fill it in by your own name-value or leave it empty, see the details here):

    {
      "dateOfBirths": "1989-12-24",
      "issuedBy": "PE",
      "services": [
        "58B76696-75E2-466F-97A2-1B216ED40108"
      ],
      "driverLicenseNumber": "421450",
      "driverLicenseClass": "1",
      "metadata": {
        "myOwnRequestId": "qw-12345"
      }
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "58b76696-75e2-466f-97a2-1b216ed40108",
        "serviceName": "Canadian DMV Verification",
        "serviceDescription": "Canadian Driver License Data Verification",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "metadata": {
          "myOwnRequestId": "qw-12345"
        },
        "profiles": [
          {
            "internalId": null,
            "firstName": "",
            "middleName": "",
            "lastName": "",
            "fullName": "",
            "dateOfBirths": "12/24/1989",
            "sex": null,
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": null,
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": null,
            "offenses": null,
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": "421450",
            "issuedBy": "PE",
            "verificationResult": null,
            "driverLicenseVerificationResult": null,
            "canadianDriverLicenseVerificationResult": {
              "licenseVerificationResult": {
                "status": "Valid",
                "code": 1,
                "message": "Driver's license is valid"
              },
              "licenseClassVerificationStatus": "Class Match",
              "currentLicenseClasses": "1,3,5"
            }
          }
        ]
      }
    ]
    

    Not Valid Status

    To get a 'Not Valid' (Code 2) license verification status, send the request data below:

    {
      "dateOfBirths": "1954-09-09",
      "issuedBy": "NU",
      "services": [
        "58B76696-75E2-466F-97A2-1B216ED40108"
      ],
      "driverLicenseNumber": "80001",
      "driverLicenseClass": "3"
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "58b76696-75e2-466f-97a2-1b216ed40108",
        "serviceName": "Canadian DMV Verification",
        "serviceDescription": "Canadian Driver License Data Verification",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "profiles": [
          {
            "internalId": null,
            "firstName": "",
            "middleName": "",
            "lastName": "",
            "fullName": "",
            "dateOfBirths": "09/09/1954",
            "sex": null,
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": "NU",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": null,
            "offenses": null,
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": "80001",
            "issuedBy": "NU",
            "verificationResult": null,
            "driverLicenseVerificationResult": null,
            "canadianDriverLicenseVerificationResult": {
              "licenseVerificationResult": {
                "status": "NotValid",
                "code": 2,
                "message": "Driver's license is suspended, cancelled or expired"
              },
              "licenseClassVerificationStatus": "Class Match",
              "currentLicenseClasses": "3,5"
            }
          }
        ]
      }
    ]
    

    Not Found Status

    To get a 'Not Found' (Code 3) license verification status, send the request data below:

    {
      "dateOfBirths": "1974-04-24",
      "issuedBy": "PE",
      "services": [
        "58B76696-75E2-466F-97A2-1B216ED40108"
      ],
      "driverLicenseNumber": "404487"
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "58b76696-75e2-466f-97a2-1b216ed40108",
        "serviceName": "Canadian DMV Verification",
        "serviceDescription": "Canadian Driver License Data Verification",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "profiles": [
          {
            "internalId": null,
            "firstName": "",
            "middleName": "",
            "lastName": "",
            "fullName": "",
            "dateOfBirths": "04/24/1974",
            "sex": null,
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": "PE",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": null,
            "offenses": null,
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": "404487",
            "issuedBy": "PE",
            "verificationResult": null,
            "driverLicenseVerificationResult": null,
            "canadianDriverLicenseVerificationResult": {
              "licenseVerificationResult": {
                "status": "NotFound",
                "code": 3,
                "message": "Driver's license is not found in the Jurisdiction"
              },
              "licenseClassVerificationStatus": "N/A",
              "currentLicenseClasses": "-"
            }
          }
        ]
      }
    ]
    

    Invalid DOB Status

    To get a 'Invalid DOB' (Code 4) license verification status, send the request data below:

    {
      "dateOfBirths": "1973-04-22",
      "issuedBy": "NB",
      "services": [
        "58B76696-75E2-466F-97A2-1B216ED40108"
      ],
      "driverLicenseNumber": "8256396"
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "58b76696-75e2-466f-97a2-1b216ed40108",
        "serviceName": "Canadian DMV Verification",
        "serviceDescription": "Canadian Driver License Data Verification",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "metadata": {},
        "profiles": [
          {
            "internalId": null,
            "firstName": "",
            "middleName": "",
            "lastName": "",
            "fullName": "",
            "dateOfBirths": "04/22/1973",
            "sex": null,
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": "NB",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": null,
            "offenses": null,
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": "8256396",
            "issuedBy": "NB",
            "verificationResult": null,
            "driverLicenseVerificationResult": null,
            "canadianDriverLicenseVerificationResult": {
              "licenseVerificationResult": {
                "status": "InvalidDOB",
                "code": 4,
                "message": "Driver's license is found in the Jurisdiction, but DOB is not match"
              },
              "licenseClassVerificationStatus": "N/A",
              "currentLicenseClasses": "-"
            }
          }
        ]
      }
    ]
    

    Interlock Status

    To get a 'Interlock' (Code 5) license verification status, send the request data below:

    {
      "dateOfBirths": "1972-10-29",
      "issuedBy": "MB",
      "services": [
        "58B76696-75E2-466F-97A2-1B216ED40108"
      ],
      "driverLicenseNumber": "INTERLS288P9"
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "58b76696-75e2-466f-97a2-1b216ed40108",
        "serviceName": "Canadian DMV Verification",
        "serviceDescription": "Canadian Driver License Data Verification",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "profiles": [
          {
            "internalId": null,
            "firstName": "",
            "middleName": "",
            "lastName": "",
            "fullName": "",
            "dateOfBirths": "10/29/1972",
            "sex": null,
            "address": null,
            "countryName": null,
            "countryCode": null,
            "street1": null,
            "street2": null,
            "city": null,
            "state": "MB",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": null,
            "offenses": null,
            "photoUrl": null,
            "source": null,
            "otherInformation": null,
            "idNumber": "INTERLS288P9",
            "issuedBy": "MB",
            "verificationResult": null,
            "driverLicenseVerificationResult": null,
            "canadianDriverLicenseVerificationResult": {
              "licenseVerificationResult": {
                "status": "Interlock",
                "code": 5,
                "message": "Driver's license has an Ignition Interlock condition. The driver must only drive vehicles that are equipped with an approved Ignition Interlock device"
              },
              "licenseClassVerificationStatus": "Class Match",
              "currentLicenseClasses": "5,5A,5I,5L"
            }
          }
        ]
      }
    ]
    
    Back to top IDScan.net IDScan.net GitHub