As discussed in the verification guide, Synctera recommends using document verification as a step-up verification method for customers that cannot be automatically verified using basic CIP information (name, address, dob, govenment ID). Synctera has partnered with Socure to provide the ability to verify thousands of documents from over 100 countries to help verify a customer’s identity. By capturing the front and back of the document as well as a live capture selfie, document verification can be used as step up verification to improve conversion rates on customers that would otherwise go into manual review using standard identity verification methods. It can also help to reduce risk by further ensuring the validity of the customer and their information. See the API reference or follow this guide for more information about integrating document verification into your onboarding flow.Documentation Index
Fetch the complete documentation index at: https://docs.synctera.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
This guide assumes that you have:- Created a personal customer
- Created a disclosure
- Verified a customer
Socure SDKs
Socure provides SDKs for multiple platforms to simplify the integration of document verification into your application:- WebSDK
- Android SDK
- iOS SDK
- React SDK
If you would like build out your document verification flow using the Socure SDK, contact your Synctera sales representative.
Example: Using document verification as a step-up
Synctera recommends using document verification as a step-up for some verification failures. Generally, we recommend sending verifications that are flagged asREVIEW through Socure’s document verification flow.
Document verification increases conversion for customers that are flagged for review in their initial KYC verification.
REVIEW on initial verification. We will then initiate document verification to show how you can use Socure’s document verification as a step-up verification method to decrease manual review time and increase conversion of customer.
Integration Steps
Create a personal customer
Capture the personal information
Create a KYC data disclosure
Ensure the Customer opts in
Verify the customer
Using the Synctera platform
Collect the ID documents
Capture photos of the ID docs
Verify the customer
Initiate the Document Verification
1. Create a personal customer
First we start by creating a record for our new customer. We’ll use thePOST /persons endpoint to create a person.
2. Create a KYC data collection disclosure
Once we have our created customer, you will need to display a disclosure to your customer that you are collecting personal data that will be shared with a third-party for the purpose of verifying their identity. For this we use the disclosures resource.3. Verify the customer
Now that we have a customer, and consent to collect and share their data we can make a request to verify the customer.Consent must come directly from the customer.
IDENTITY verification object: Address cannot be resolved to the individual.
This warning results in the customer’s verification status being marked as REVIEW. In the next section, we will initiate a document verification session which if successful will automatically resolve the issue previously flagged.
4. Collect the customer’s documents
Before we collect the customer’s documents we need to begin a document verification session. To do this we will use the document verification session endpoint and a minimal request containing thePERSON_ID
5. Verify the customer using document verification
Using the document reference id returned from the Socure SDK, send a verification request, (like you did in step 3) this time including thedocument_id.
document_id, the verification request will perform a KYC verification of the individual using the documents provided to the Socure SDK.
DOCUMENT_VERIFICATION response containing details about the verification like: Document image correlates with self-portrait and Socure's document verification model recommends accepting the individual. In this example, by using document verification we automatically verified a customer that was initially flagged for manual review by collecting and verifying a government issued identity document from the customer.
Great! We have successfully created and verified a personal customer using document verification. You can now visit our account creation guide.
