Create verification
Identity API — Verifications (Legacy)
Create Verification
Create a new verification request. Processing is performed synchronously.
The data.type field determines the verification type and must be one of:
verification/idv: Identity document verification (requires adocument/idvrelationship)verification/address: Address document verification (requires adocument/addressrelationship)verification/business: Business verification / KYB (requires abusinessrelationship)
The session relationship is optional. When meta.auto_update_session is true, a session must be provided and will be updated with the extracted data upon a passing verification.
Meta options:
auto_update_session: Whentrueand the verification passes, the session is automatically updated with the extracted information. Requires asessionrelationship.
POST
Create verification
Authorizations
API key for authentication. Access https://console.beltic.com/ to obtain your API key.
Body
application/json
- verification/idv
- verification/address
- verification/business
Example:
{
"type": "verification/idv",
"relationships": {
"session": {
"data": {
"type": "session",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
},
"document": {
"data": {
"type": "document/idv",
"id": "223e4567-e89b-12d3-a456-426614174000"
}
}
},
"meta": { "auto_update_session": true }
}Response
Verification created and processed successfully