Socure SDK Integration

Socure SDK 5.0 Integration

We at GD have updated our IDV and CIP processes. This will affect the enrollment process and requires a new SDK integration from Socure.

  • For IDV workflow, the Socure SDK needs to be integrated within a partner's website and mobile apps. With Socure SDK, customers will be redirected to a Socure-enabled page where they can upload both the front and back images of their ID documents along with a selfie in real-time using their smartphones. Once the documents are successfully uploaded, that SDK will generate a unique document ID, which will then be used to call a Fraud API to fetch the results from Socure.
  • For CIP, there won't be any changes from the customer's perspective, except for the optional step of capturing the customer’s consent to search their SSN record against the public SSA repository. This step is up to partner preference.

High Level Steps

  1. Enroll User and Create Account and Card
    1. Call the Enrollments API:
      POST /programs/{programCode}/enrollments
      
    2. This step enrolls the user in the product, creates an account, and issues a card.
  2. Check for IDV Requirement
    1. From the Enrollments API response:
      1. If IDV is NOT required: Complete the enrollment.
      2. If IDV is required: Proceed to the next step.
  3. Perform IDV Verification (If Required)
    1. Fetch the docvTransactionToken - a new API exposed from the PartnerAPI
      1. Call the new API:
        POST /programs/{programCode}/accounts/{accountIdentifier}/socureDocumentRequest
        
    2. Initialize the Socure SDK 5 using the provided SDK key from your GD contact and docvTransactionToken
    3. Ensure the user successfully completes the document capture and upload process.
    4. IDV result verification: - You will need to update the API to include docvTransactionToken parameter
      1. Call the API:
        POST /programs/{programCode}/accounts/{accountIdentifier}/users/{userIdentifier}/kycGates/idvsocure
        
      2. Include the docvTransactionToken from the document capture step.
  4. Complete Enrollment
    1. Once IDV verification is successful, finalize the user enrollment process.

For more technical and in-depth integration guides, please refer to the iOS Socure SDK, Android Socure SDK, or Web Socure SDK pages, as well as the Callback Methods page.