Supported Documents and Types
A list of supported documents, and their subtypes.
Selfie Images
Value
Type of document
curl --location 'https://enterprise.personr.co/api/1.1/wf/api-document-upload' \
--data '{
"applicantId": "4242424242424x424242424242424242",
"docType": "SELFIE",
"docCountryISO": "AUS",
"docFile": {
"filename": "selfie.jpg",
"contents": "/9j/4AAQSkZJRgABAQAAAQABAAD..."
}
}'const axios = require('axios');
axios.post('https://enterprise.personr.co/api/1.1/wf/api-document-upload', {
applicantId: '4242424242424x424242424242424242',
docType: 'SELFIE',
docCountryISO: 'AUS',
docFile: {
filename: 'selfie.jpg',
contents: '/9j/4AAQSkZJRgABAQAAAQABAAD...'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});ID Cards
Value
Type of document
Drivers Licenses
Value
Type of document
Passports
Value
Type of document
Residence Permits
Value
Type of document
Utility Bills
Value
Type of document
Last updated
Was this helpful?