About this service
W2 DVFC 047 is a digitized and AML-compliant (Anti-money laundering) method of automated identity verification that uses AI technology to reliably identify users.
DVFC offers a simple process to reliably identify users.
- Create a session. (This will include submitting basic textual data of the user you are attempting to identify, which will generate a session url)
- Submitting physical documents. (i.e. Passport, Id, etc.)
- Information is processed.
- Result is returned via our webhook and stored in the results section on the case. Click Here to view potential responses returned.
Product Code: W2_DVFC_047
Does this service leave a credit search Footprint? No
How to use
To call the endpoint you will need to perform a HTTP POST request to the URL:
| URL | API Version |
|---|---|
| https://api.w2globaldata.com/identification | 1.5 + |
Request
The following properties pertain for creation of a session.
| Property Name | Type | Optional/Mandatory |
|---|---|---|
| CaseId | String | Mandatory* |
| City | String | Optional |
| ClientReference | String | Mandatory* |
| ConfCode | String | Optional* |
| Firstname | String | Optional |
| Lastname | String | Optional |
| Country | String | Optional |
| Postcode | String | Optional |
| String | Optional | |
| Gender | String | Optional |
| DayOfBirth | String | Optional* |
| MobilePhone | String | Optional |
| MonthOfBirth | Integer | Optional* |
| YearOfBirth | Integer | Optional* |
| PreferredLang | String | Optional |
Notes
DayOfBirth, MonthOfBirth and YearOfBirth are optional parameters, but if a date is provided then all three fields must be populated, (i.e. 08/2025 - Not Accepted, 12/08/2025 - Accepted).
CaseId or ClientReference must be provided to use this endpoint. If a CaseId is not provided then a case will automatically be created upon the creation of a session, but a ClientReference must be provided. If a CaseId is provided then your session information will be created and linked to your existing Case.
ConfCode is optional however a default configuration will be used when no ConfCode is provided. Please consult about the use of this during onboarding. The configuration available is explained in the configuration section below.
Example Request
{
"dayOfBirth": 23,
"monthOfBirth": 5,
"yearOfBirth": 1987,
"email":"[email protected]",
"firstname":"Erika",
"gender":"FEMALE",
"lastname":"Musterman",
"mobilephone":"+441763109660",
"nationality":"GB",
"zipcode":"W1U",
"preferredLang":"en",
"clientReference": "o199i-2idjjj3x",
"caseId": "581ebe6d-9b1b-4b92-a057-e4d5cbb34012",
"confCode": "custom-conf-p-selfie-01"
}
Custom Configurations
The following customizations are available when creating a DVFC 047 session:
| Property Name | Type | Optional/Mandatory |
|---|---|---|
| ConfigName | String | Mandatory |
| DocumentsToCapture | List of DocsToCapture | Mandatory |
Each DocsToCapture is a seperate document definition and can contain multiple accepted documents or verification types. DocsToCapture has the following properties:
Property Name | Type | Optional/Mandatory | Description |
|---|---|---|---|
Code | String | Mandatory | Code to associate with the captured document when returning the result. E.g. |
DocTypes | List of String | Mandatory | List of the documents expected from this document definition. -
|
Optional | Boolean | Optional | Flag indicating that the document capture is optional, SELFIE and LIVENESS documents can not be optional. |
VersoHandling | String | Optional | Indicate how to handle verso of the document. -
|
Description | String | Optional | Description of the document, to display in the web page used to capture the document
|
Label | String | Optional | Title of the page used to capture the document.
|
Notes
The CustomerIdentificationUrl provided upon successful creation of a session has an expiry time of 1 day. The session is needed only for the submission of information, so once the information is submitted for identification, it is no longer required and the result of the identification can be monitored from the Case to which it's attached.
However, if you have not started or completed the submition of information and your session expires you simply need to call the create endpoint with the existing case id (whether it was created as part of the original submission or whether it is an existing Case which you provided), and a new CustomerIdentificationUrl will be supplied.
Example Response
{
"CustomerIdentificationUrl": "https://{example_url}/session/{sessionId}",
"CaseId": "581ebe6d-9b1b-4b92-a057-e4d5cbb34012"
}