Once an applicant has finished processing, you can use this endpoint to download a certified proof of verification PDF report, containing extracted data, document images, and timestamps.
The report is generated in real-time and provided to you in base64 encoded format.
Example Verification Report
Verification reports can be used as proof of verification, and contain verification information, anything we find on an individual, and more.
Download proof of verification
POST/api-summary-download
Once the applicant has finished processing, you can download a proof of verification report
Name
Value
Body
Name
Type
Description
Reports can be generated as redacted or non-redacted.
Non-redacted reports contain sensitive information, like extracted document numbers, expiry dates, document images, and more.
var axios =require('axios');var FormData =require('form-data');var data =newFormData();data.append('applicantId','4242424242424x424242424242424242');data.append('redacted','no');var config = { method:'post',maxBodyLength:Infinity, url:'https://enterprise.personr.co/api/1.1/wf/api-summary-download', 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");form.append("redacted","no");var settings = {"url":"https://enterprise.personr.co/api/1.1/wf/api-summary-download","method":"POST","timeout":0,"processData":false,"mimeType":"multipart/form-data","contentType":false,"data": form};$.ajax(settings).done(function (response) {console.log(response);});