IDScan.net
Search Results for

    Show / Hide Table of Contents

    Configuration

    Path to ARV Configuration File

    C:\Program Files\IDScan.Net\IDScanNet.ARV\appsettings.json

    Note

    By default this file is not present

    Age Limit Setting

    {
      "ARVValidationService": {
        "AgeLimit": "21"
      }
    }
    

    AgeLimit - minimum age the person who presents the driver's license must be to pass the authentication check

    Data Collection Setting

    This setting will enable the collection of driver's license images to the following folder

    C:\Users\Public\Documents\IDScan.net\IDScanNet.ARV.Host\DataCollector\

    {
      "DataCollector": {
        "IsEnabled": true
      }
    }
    

    Health Check

    Method GET Request URL http://[address]:5000/hc CURL Command curl -X 'GET' http://[address]:5000/hc

    Response example:

    {
      "status": "Unhealthy",
      "entries": {
        "Scanner": {
          "status": "Unhealthy"
        },
        "Camera": {
          "status": "Healthy"
        },
        "License": {
          "status": "Healthy"
        },
        "ASDKLicense": {
          "status": "Healthy"
        }
      }
    }
    

    Developer Mode

    In developer mode we support IDScan Sample Card and use first detected face from web camera as the required face.

    Enable:

    Method POST Request URL http://[address]:5000/maintenance/devmode/enable CURL curl -X 'POST' http://[address]:5000/maintenance/devmode/enable

    Disable:

    Method POST Request URL http://[address]:5000/maintenance/devmode/disable CURL curl -X 'POST' http://[address]:5000/maintenance/devmode/disable

    Restart ARV service

    Method POST Request URL http://[address]:5000/maintenance/restart CURL curl -X 'POST' http://[address]:5000/maintenance/restart

    Restart ARV hardware

    Method POST Request URL http://[address]:5000/maintenance/hardrestart CURL curl -X 'POST' http://[address]:5000/maintenance/hardrestart

    Back to top IDScan.net IDScan.net GitHub