Downloading a proof of verification report

When an applicant has been verified, you can download a proof of verification PDF report.

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

NameValue

Content-Type

multipart/form-data

Authorization

Bearer YOUR_TOKEN

Body

NameTypeDescription

applicantId

string

Unique applicantId generated on applicant creation (required)

redacted

yes/no

Remove sensitive/personal information from the report (required)

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.

Request

curl --location 'https://enterprise.personr.co/api/1.1/wf/api-document-download' \
--form 'applicantId="4242424242424x424242424242424242"'
--form 'redacted="no"'

Response

{
  "status": "success",
  "response": {
    "base64": [
      "/9j/JVBERi0..."
    ]
  }
}

Calling this endpoint may take longer than usual, as we generate PDF reports in real time.

Last updated