Identification
Identification for Natural Person
Create new natural person identification
Natural Person ID
Unique requestor identification in UUID format
The legal name of the vendor/company performing the identification for this natural person
Method used to identify the customer
Date on which the identification was carried out. The date must be within the last 24 months.
Type of the identification document which has been used for identification of the natural person.
Document number of the identification document.
Issuing country of the identification document.
Issuing authority of the identification document
Issue date of the identification document
Expiry date of the identification document. If the identification document is a birth certificate, the date on which the person comes of age must be entered as the expiry date.
Full name of the mother, only mandatory for identificationDocumentType = BIRTH_CERTIFICATE
Residence city of the mother, only mandatory for identificationDocumentType = BIRTH_CERTIFICATE
Full name of the father, only mandatory for identificationDocumentType = BIRTH_CERTIFICATE
Residence city of the father, only mandatory for identificationDocumentType = BIRTH_CERTIFICATE
Accepted
Bad Request
POST /entities/natural-persons/{naturalPersonId}/identification HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Requestor-ID: 123e4567-e89b-12d3-a456-426614174000
Content-Type: application/json
Accept: */*
Content-Length: 408
{
"externalVerifier": "WEB_ID",
"identificationType": "VIDEO_IDENT",
"identificationDate": "2025-10-14",
"identificationDocumentType": "ID",
"documentNumber": "text",
"documentCountry": "AF",
"documentIssuer": "text",
"documentIssueDate": "2025-10-14",
"documentExpiryDate": "2025-10-14",
"documentMotherFullName": "text",
"documentMotherResidenceCity": "text",
"documentFatherFullName": "text",
"documentFatherResidenceCity": "text"
}
No content
Create Identification Verification
After successful request link to a video call should be retrieved with Get Identification Verification endpoint from identificationUrl
field of the response.
Currently only externalVerifier = WEB_ID and identificationType = VIDEO_IDENT is supported.
Unique requestor identification in UUID format
The legal name of the vendor/company performing the identification for this natural person
Method used to identify the customer
OK
Bad Request
POST /entities/identification-verifications HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Requestor-ID: 123e4567-e89b-12d3-a456-426614174000
Content-Type: application/json
Accept: */*
Content-Length: 121
{
"naturalPersonId": "123e4567-e89b-12d3-a456-426614174000",
"externalVerifier": "WEB_ID",
"identificationType": "VIDEO_IDENT"
}
{
"identificationVerificationId": "123e4567-e89b-12d3-a456-426614174000"
}
Get Identification Verifications
String value used for pagination
Maximum number of items to return
20
OK
Bad Request
GET /entities/identification-verifications?limit=20 HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"data": [
{
"naturalPersonId": "123e4567-e89b-12d3-a456-426614174000",
"identificationVerificationId": "123e4567-e89b-12d3-a456-426614174000",
"externalVerifier": "WEB_ID",
"identificationType": "VIDEO_IDENT",
"identificationUrl": "text",
"documentId": "123e4567-e89b-12d3-a456-426614174000",
"naturalPersonIdentificationId": "123e4567-e89b-12d3-a456-426614174000",
"createdOn": "2025-10-14T11:28:39.739Z",
"modifiedOn": "2025-10-14T11:28:39.739Z",
"status": "RECEIVED"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}
Get Identification Verification
Identification Verification ID
OK
Bad Request
GET /entities/identification-verifications/{identificationVerificationId} HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"naturalPersonId": "123e4567-e89b-12d3-a456-426614174000",
"identificationVerificationId": "123e4567-e89b-12d3-a456-426614174000",
"externalVerifier": "WEB_ID",
"identificationType": "VIDEO_IDENT",
"identificationUrl": "text",
"documentId": "123e4567-e89b-12d3-a456-426614174000",
"naturalPersonIdentificationId": "123e4567-e89b-12d3-a456-426614174000",
"createdOn": "2025-10-14T11:28:39.739Z",
"modifiedOn": "2025-10-14T11:28:39.739Z",
"status": "RECEIVED"
}
Last updated