Retrieving entity verification results
When an entity has finished processing, you can retrieve the verification results.
Retrieving the result
Name
Value
Name
Type
Description
Request
curl --location 'https://enterprise.personr.co/api/1.1/wf/api-entity-status' \
--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-entity-status',
headers: {
...data.getHeaders()
},
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});{
"status": "success",
"response": {
"applicantStatus": "Reviewed",
"reviewAnswer": "Approved",
"createdDate": "12/09/2024",
"rejectLabels": [],
"entityName": "ABC Pty Ltd",
"registrationNumber": "000000000",
"entityType": "Australian Proprietary Company, Limited By Shares",
"incorporatedOn": "12/12/2020",
"entityCountry": "AUS",
"registrySource": "Australian Securities & Investments Commission",
"registeredAddress": "123 Example Lane, Perth, 6000, WA, Australia",
"representativeEmail": "example@personrco",
"representativePhone": "0400000000",
"sourceKey": "Example Source Key",
"externalUserId": []
}
}{
"status": "success",
"response": {
"applicantStatus": "Reviewed",
"reviewAnswer": "Rejected",
"createdDate": "12/09/2024",
"rejectLabels": [
"SANCTIONS",
"WATCHLIST"
],
"entityName": "ABC Pty Ltd",
"registrationNumber": "000000000",
"entityType": "Australian Proprietary Company, Limited By Shares",
"incorporatedOn": "12/12/2020",
"entityCountry": "AUS",
"registrySource": "Australian Securities & Investments Commission",
"registeredAddress": "123 Example Lane, Perth, 6000, WA, Australia",
"representativeEmail": "example@personrco",
"representativePhone": "0400000000",
"flowAnswers": []
}
}Applicant Status Types
Review Answer Types
Last updated
Was this helpful?