Yoti can provide a Double Anonymity service by building on the existing age verification implementation by applying a secondary anonymisation step.
In addition to the core age verification, the configuration includes:
- Digital ID: This flag (
digital_id) requires a one-time onboarding process. Once created, users are verified for life and can use their digital ID to prove their age with businesses online without revealing the original reason for verification source of the verification information. Enable Facial Age Estimation within Digital ID allows the user two options to verify within the App, Age estimation or through an ID Document - Yoti Key Flag: This flag (
yoti_key) supports the re-verification of users by allowing the use of a pass key combined with two-factor authentication (2FA). Arule_id__must be configured to enable this method. Details around the Yoti Key and configuring arule_idcan be found in Tokens (Yoti Key) - Double Blind: This flag (
double_blind) updates how the methods are presented to the end user, and it is recommended this is enabled when configuring any double blind methods
Below is an example of how to enable these features in your configuration:
false.
{ // ... "digital_id": { "threshold": 18, "allowed": true, "age_estimation_allowed": true, "age_estimation_threshold": 21 }, "yoti_key": { "allowed": true, "authentication": true // true for Yoti key, false for Age token }, "double_blind": true, "callback": { "auto": false, // Required for offering a Pass Key at the end of the AV flow "url": "https://www.yoti.com" } // ..}Full example
{ "type": "OVER", "age_estimation": { "allowed": true, "threshold": 21, // Desired buffer for Age Estimation "level": "PASSIVE", "retry_limit": 1 }, "digital_id": { "threshold": 18, "allowed": true, "age_estimation_allowed": true, "age_estimation_threshold": 21 }, "doc_scan": { "allowed": true, "threshold": 18, "authenticity": "AUTO", "level": "PASSIVE", "retry_limit": 1 }, "yoti_key": { "allowed": true, "authentication": true // true for Yoti key, false for Age token }, "rule_id": "your_rule_id", "double_blind": true, "ttl": 900, "callback": { "auto": false, // Required for offering a Pass Key at the end of the AV flow "url": "https://www.yoti.com" }, "notification_url": "https://yourdomain.example/webhook", "cancel_url": "https://www.yoti.com", "retry_enabled": true, "synchronous_checks": true}Was this page helpful?