Initiates a new verification process using a specified workflow. The API key must have sufficient permissions to start verifications. Metadata can be included to track custom information throughout the verification process.
Request to start a new verification process. This initiates a verification workflow for a user and returns the verification configuration.
ID of the workflow to be executed
"40f85c69-b27a-46e8-9115-691401acb5df"
Additional data to be associated with the verification. This information is stored with the verification record and can be used for tracking, correlation, or custom business logic.
Common metadata fields:
{
"email": "[email protected]",
"reference": "USER123",
"customerId": "CUST-456",
"deviceId": "D-789012"
}Verification started successfully
Response returned when starting a new verification. This contains all the information needed to guide the user through the verification process.
Additional metadata associated with the verification
{
"email": "[email protected]",
"reference": "USER123"
}Unique identifier of the workflow being used
"40f85c69-b27a-46e8-9115-691401acb5df"
Unique identifier for the identity being verified
"32a5b2d6-7c9e-4815-a599-fd03d6b34c53"
Unique identifier for this verification attempt
"85c94e71-6e3f-4a19-b15c-781d8a876542"
IP address from which the verification was initiated
"192.168.1.1"
List of required input fields for the verification
[
{
"fieldName": "SELFIE_VIDEO",
"description": "A short video of your face for liveness detection",
"group": 1,
"fieldType": "FILE",
"optional": false
},
{
"fieldName": "DOCUMENT_TYPE",
"description": "Select your ID document type",
"group": 2,
"fieldType": "DROPDOWN",
"data": {
"options": [
"PASSPORT",
"DRIVERS_LICENSE",
"NATIONAL_ID"
]
},
"optional": false
}
]List of configuration settings for the verification
[
{
"id": 123,
"createdAt": "2023-06-15T14:30:00Z",
"updatedAt": "2023-06-15T14:30:00Z",
"value": "true",
"fieldName": "GALLERY_RESTRICTION",
"type": "BOOLEAN"
}
]