Requesting to start the verification process
Once you've uploaded all required documents to an entity, you can request to start the verification.
Submit the applicant for processing
Name
Value
Name
Type
Description
Request
curl --location 'https://enterprise.personr.co/api/1.1/wf/api-request-applicant-check' \
--form 'applicantId="4242424242424x424242424242424242"'var axios = require('axios');
var FormData = require('form-data');
var data = new FormData();
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);
});{
"response": "success"
}{
"statusCode": 400,
"message": "Error: incorrect applicantId provided"
}Last updated
Was this helpful?