Once you've uploaded all required documents to an applicant, you can request to start the verification.
When all documents and selfie images have been uploaded, use this endpoint to confirm and start the verification process.
Note: You don't need to use this endpoint if you're verifying applicants using a verification link. Verification links submit applicants for processing automatically.
Make sure all required documents for your flow have been uploaded before confirming to start the verification process. If all of the documents haven't been uploaded, using this endpoint can be harmful and may affect the verification result.
If you've accidentally called this endpoint and haven't uploaded all required documents, create a new applicant and start the verification process again.
Submit the applicant for processing
POST/api-request-applicant-check
Once all documents have been uploaded, start the verification process.
Name
Value
Content-Type
multipart/form-data
Authorization
Bearer YOUR_TOKEN
Body
Name
Type
Description
applicantId
string
Unique applicantId generated on applicant creation (required)
var axios =require('axios');var FormData =require('form-data');var data =newFormData();data.append('applicantId','4242424242424x424242424242424242');var config = { method:'post',maxBodyLength:Infinity, url:'https://enterprise.personr.co/api/1.1/wf/api-request-applicant-check', headers: { ...data.getHeaders() }, data : data};axios(config).then(function (response) {console.log(JSON.stringify(response.data));}).catch(function (error) {console.log(error);});
var form =newFormData();form.append("applicantId","4242424242424x424242424242424242");var settings = {"url":"https://enterprise.personr.co/api/1.1/wf/api-request-applicant-check","method":"POST","timeout":0,"processData":false,"mimeType":"multipart/form-data","contentType":false,"data": form};$.ajax(settings).done(function (response) {console.log(response);});