Double Anonymity
Overview
This guide assumes you are familiar with the Age Verification Service, if you are looking to review the AVS implementation first, please see the section here.
Yoti can provide a Double Anonymity Check. This check builds 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_id
can be found in Reusable checks (Yoti keys) - 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 an Age Key at the end of the AV flow
"url": "https://www.yoti.com"
}
// ..
}
Complete 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 an Age 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
}
For results handling, see the results section.
Was this page helpful?