Request a Single Document Verification

To request a single Document verification, the following end point will return the unique URL for your end user to navigate to in order to complete the verification process.

To request a Document verification, make a HTTPS POST request to https://api.lemverify.io/api/v1/{account_id}/document, where {account_id} is your LEM Verify account ID found in the Account Setup section of the dashboard.

The body must contain clientRef, a String containing your own unique client reference number:

{
  "clientRef": "my_unique_id"
}

If the request is successful (200 response) then the response body will look similar to the following:

{
  "id": "8a20ab90-37a1-11e9-a79c-891da1f19982",
  "friendlyId": "vVebr9keyfZ2sctoZkMfBG",
  "url": "https://lemverify.io/document_verification.html?acc=gc15f4xa-8ea5-4b7e-94c0-cd0303d80aed",
  "balance": 52
}

The id is a UUID for the verification, the friendlyId is a short uuid (mostly used for internal referencing at LEM), the balance is remaining credit balance on the LEM Verify account and the url is the url containing the unique URL for the verification (where the documents and liveness secure verification takes place).

Considerations

The request will stay in the pending state for 30 days, until either the verification is completed or has been deleted via the LEM Verify dashboard.
Once a verification is completed it will be retained in the LEM Verify system for 7 days, where it will then be permanently deleted.