Profile Use Case
By configuring the profile parameter appropriately, you can ensure that the verification process aligns with your security requirements and use case scenarios.
Overview
Usage
var request = require('request');
var fs = require('fs');
var options = {
'method': 'POST',
'url': 'https://idv-eu.kairos.com/v0.1/full-id-verification',
'headers': {
'app_id': 'put_app_id_here',
'app_key': 'put_app_key_here'
},
formData: {
'selfie': fs.createReadStream('/path/to/selfie_image'),
'document': fs.createReadStream('/path/to/document_image'),
'document_back': fs.createReadStream('/path/to/document_back_image'),
'profile': 'put_your_profile_here',
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});curl -X POST --location 'https://idv-eu.kairos.com/v0.1/full-id-verification' \
--header 'app_id: put_app_id_here' \
--header 'app_key: put_app_key_here' \
--form 'selfie=@"/path/to/selfie_image"' \
--form 'document=@"/path/to/document_image"' \
--form 'document_back=@"/path/to/document_back_image"'
--form 'profile=put_your_profile'Last updated
