When an applicant has finished processing, you can retrieve the verification results.
Verifications typically take ~2 minutes on average to process. When an applicant has finished processing, use this endpoint to retrieve extracted data from their documents along with the verification result.
Retrieving the result
POST/api-applicant-status
Retrieve the verification status, and extracted data from an applicant's documents.
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-applicant-status', 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-applicant-status","method":"POST","timeout":0,"processData":false,"mimeType":"multipart/form-data","contentType":false,"data": form};$.ajax(settings).done(function (response) {console.log(response);});
If your applicant is taking longer to process, it may be because of their image quality. We also check identity data against 100+ sources, which may take time if the data doesn't match.
Applicant Status Types
Created The applicant has been created.
Pre-Checked The applicant's document images are being processed.
Pending The applicant's identity data is being processed.
Reviewed The verification is complete, and results are ready.
Applicant Action Status Types
Pending The verification is being processed.
Reviewed The verification is complete, and results are ready.
Applicant Status and ActionStatus update at the same time. It's recommended to use Status as it contains more information.
Review Answer Types
Approved The applicant has successfully been verified.
Rejected The applicant wasn't able to be verified. Look at rejectLabels to see why.
There are two types of rejections: Rejected (Retry) and Rejected (Final)
Rejected (Retry) allows an applicant to attempt their verification again, if they've uploaded a blurry photo for example.
Rejected (Final) is final, and does not allow another attempt. This is used when an applicant has attempted to forge their documents, or if they appear on a sanction or watchlist.
See the next page for a list of rejection labels, and what they mean.