Ability to Ignore Document Expiry on Verification Process

We now have the feature to ignore the date of expiry on a document (such as National ID, Government ID, Drivers License, etc). This feature is enabled by the API key flag ignoreDocumentExpiry. Below is an example of how it can be enabled

  "baseConfiguration": "ageVerification_noEidv_only_front_id",
  "realWorld": {
    "minimumAge": "21",
    "countries": {
      "base": "none",
      "additional": [
        "CA",
        "US"
      ]
    },
    "ignoreDocumentExpiry": {
      "mode": "disabled"
    }
  }

The default behavior is that when this flag does not exist, we check the expiry every time (This maintains current behavior of the system).

Read more

How do you setup identity or age verification so that only certain locations need to get verified?

Answer: Use Location-Based Identity Verification. This is enabled via the locationRestrictions.requiresVerification attribute in your application configuration to define which countries and regions require verification. Summary Token of Trust now supports location-based verification requirements through the locationRestrictions configuration. This feature allows you to specify which geographic locations (countries and regions)

By darrin