Available Checks
Otentica provides various verification checks that can be included in a validation flow. Each check serves a specific purpose in verifying different aspects of a professional's credentials and identity.
Check Categories
Identity Verification
- Identity Data - Personal data through iDIN
- Correspondence Data - Address verification
- Identity Document - Document OCR and liveness
Education & Certification
- Diploma Data - DUO diploma verification
- Unverified Diplomas - Manual diploma uploads
- Certificates - Professional certificates
Professional Registration
- Healthcare (BIG) - Healthcare professional registration
- Youth Professional - Youth care registration
Business Verification
- Company Data - KvK company registration
- VAT Data - VAT number verification
Financial Verification
- Bank Data - Bank account verification
Background Checks
- Integrity (VOG) - Certificate of Good Conduct
- References - Professional references
Check Configuration
Each check has three main properties:
1. Check Name
The identifier used in the API request:
{
"checkName": "identity-data"
}
2. Importance Level
Determines if the professional can skip the check:
{
"importance": "SKIPPABLE" // or "NOT_SKIPPABLE"
}
3. Configuration (Optional)
Check-specific settings:
{
"configuration": {
"applicantLevelName": "id-and-liveness"
}
}
Best Practices
Choosing Importance Levels
Use SKIPPABLE for:
- Checks that may not apply to all professionals
- Checks where official verification might not be available
- Optional enhancements to the screening
Use NOT_SKIPPABLE for:
- Critical verification requirements
- Legally required checks
- Core business requirements
Making a check NOT_SKIPPABLE can block legitimate professionals. For example, older diplomas may not be available in DUO, or not all banks support iDIN.
Combining Checks
Always include fallback options:
[
{
"checkName": "diploma-data",
"importance": "SKIPPABLE"
},
{
"checkName": "unverified-diploma-data",
"importance": "SKIPPABLE"
}
]
This allows professionals to provide diplomas either through official channels or manual upload.
Check Dependencies
Some checks require others to function properly:
| Check | Requires |
|---|---|
company-vat-data | company-data |
bank-data (business) | company-data |
Verification Levels
Different checks provide different levels of verification:
- Fully Verified: Data validated through official sources (iDIN, DUO, KvK)
- Cross-Referenced: Data matched against other verified sources
- Document Verified: Documents checked for authenticity
- Self-Declared: Information provided by professional without verification
Next Steps
- Identity Checks - Detailed identity verification
- Education Checks - Diploma and certificate verification
- Background Checks - VOG and reference checks