Simprints Documentation
  • Introduction
    • Goals
    • Audience
    • Disclaimer
  • Product Overview
    • Product Overview
      • Simprints ID (SID)
        • Enrolment
        • Verification
        • Indentification
      • Biometrics
        • Fingerprints Recognition
          • Vero Fingerprint Scanners
        • Face Recognition
      • SID Intents Launcher
      • Cloud Backend
      • Data Collection Platforms
        • DHIS2
        • CommCare
        • ODK + Survey CTO
  • Architecture
    • System architecture
      • Mobile
        • Simprints ID (SID)
          • Project structure
          • Biometric flow orchestration
  • Installation
    • Installation, Quick Start and Device Requirements
      • Installation
      • Quick Start Guide
      • Device Requirements
  • Security & Privacy
    • Security & Privacy Considerations
      • Security Policy
      • Responsible Use
      • Privacy Policy
      • Cookie Policy
  • Development
    • Getting setup
    • Simprints for Developers
      • Simprints for Developers
      • Integrating with Simprints
        • Getting Started
        • Enrollment
        • Identification
        • Verification
        • Exit Forms
        • Confidence Score Bands
        • Enrolment & Identification +
        • Handling Errors
        • Metadata
      • Other Intergrations
        • ODK Integrations + SurveyCTO
          • Enrol
          • Identify
          • Verify
          • FAQ
        • CommCare Integration
          • CommCare: Enrolment
          • Identification
          • FAQs
          • ↔️CoSync
        • DHIS2
  • Troubleshooting
    • FAQs
    • Common Issues
  • Community & Support
    • Support Channels
    • Community Guidelines
    • Open Source Contributions
  • Product Roadmap
    • Product Roadmap
      • Current Releases
      • Previous Releases
      • Submit an Idea or Request
  • Licence
  • Contribution Guidelines
    • Contribution Guidelines
      • Code Contributions
      • Bug Reports
      • Feature Requests
  • Supporting Partners
Powered by GitBook
LogoLogo
On this page
  • What is Enrolment+?
  • Enrolment+ Flow
  • What is Identification+?
  • Identification+ Flow
  • Different modules for identification and enrolment (advanced setup)
  • Legacy versions usage

Was this helpful?

Edit on GitHub
  1. Development
  2. Simprints for Developers
  3. Integrating with Simprints

Enrolment & Identification +

PreviousConfidence Score BandsNextHandling Errors

Last updated 3 months ago

Was this helpful?

There are times during enrolment or identification when you would either find a matching biometric (for enrolment) or find no-matching biometric data (for Identification). Whenever a case like this occurs, you might want to enrol the last captured biometric data, this process is termed enrolment+ or identification+, depending on which was first initiated.

Note: This feature is disabled by default when a project is created. To have this feature in your project speak with your program manager on how to enable enrolment+.

What is Enrolment+?

Continuing with our clinic scenario, assuming a patient comes to your clinic and the frontline worker decides to enrol this person with the assumption that they are a new patient. Given that enrolment+ is enabled for your project, Simprints ID would first try to match this person's biometric data with previously registered people and will return a list of potential candidates if any matches exist, else it will just enrol the new biometric data. This process of identifying existing records before enrolment is what we call enrolment+.

This is done to prevent potential duplicates, but if the frontline worker deems the beneficiary to be truly unique, then a process can be triggered to enrol the last captured biometrics without having to recapture the biometric data again. Hence the name enrolment+.

Enrolment+ Flow

  • An enrolment is triggered from calling app ( just like you would in basic )

  • Simprints ID captures biometric data and then checks to see if matching biometrics exist:

    • If matches exist, it returns a list of potential matching candidates

    • If no matches exist, it proceeds to register the biometric data and return the generated unique ID

  • The calling app receives the result:

    • If the result is a registration, the calling app extracts the new unique ID and saves it along with the captured patient's information.

    • If the result is a list of matching candidates, the calling app uses the unique IDs of the corresponding records in this candidate list to extract matching beneficiaries' information from the calling app's database:

      • Presents these database records to the frontline worker, to choose the actual information of the patient

      • If the frontline worker finds no matching record, then they can choose to enrol the last captured biometric data, for which Simprints ID will return a registration object containing the unique id, for the newly registered biometric.



val simprintsLauncher = registerForActivityResult(SimprintsContract()) { response ->

    if (response.resultCode != Activity.RESULT_OK) {
        // check-out Handling Errors page for reference
    }

    if (response.refusalForm != null) {
        // check-out Exit Form handling
    }

    if (response.identifications != null) {
        // present identified matches to user for selection
        // just like you would do with identification
    } else if (response.registration != null) {
        // complete the enrolment 
    }
}

// when the user has selected the beneficiary's information from the list,
// the unique ID should be used to trigger an identity callout

private void onSelectBeneficiary(String selectedUserUniqueId) {
   // get the session ID, from the resulting intent
   
   simprintsLauncher.launch(SimprintsRequest.ConfirmIdentity(
      projectId = "Project ID", 
      userId = "User ID",
      sessionId = sessionId,
      selectedGuid = selectedUserUniqueId,
   ))
}

// in a case where no match was found in the candidate list,
// this function can be called to trigger enrolment of last captured biometrics
private void noMatchFound(Intent data) {

   // in a case where the user cannot find an actual match from the candidate list and
   // chooses to register the captured biometric, you can get the sessionId
   // from the resulting intent and then trigger an enrolment

   simprintsLauncher.launch(SimprintsRequest.EnrolLastBiometrics(
      projectId = "Project ID", 
      userId = "User ID",
      moduleId = "Module ID",
      sessionId = sessionId,
      selectedGuid = selectedUserUniqueId,
   ))
}

What is Identification+?

In our clinic scenario, assuming a patient comes to the clinic with no means of identification but is presumed to have enrolled before, the frontline worker can then run an identification to get the list of matching candidates, from which the frontline worker will choose the actual patient.

In a case where the patient's information is not on the candidate list, the frontline worker can then choose to enrol the captured biometrics that were used for identification, without having to recapture the biometric data again. Hence the name identification +.

Identification+ Flow

  1. Simprints ID captures biometric data then checks for potential candidates and returns them

  2. The calling app receives the result:

    • If the result is a registration, the calling app extracts the new unique ID and saves it along with the captured patient's information.

    • If the result is a list of matching candidates, the calling app uses the unique IDs of the corresponding records in this candidate list, to extract matching beneficiaries' information from the calling app's database:

      • Presents these database records to the frontline worker, to choose the actual information of the patient

      • If the frontline worker finds no matching record, then they can choose to enrol the last captured biometric data, for which Simprints ID will return a registration object containing the unique ID, for the newly registered biometric.

Different modules for identification and enrolment (advanced setup)

Both Enrolment+ and Identification+ involve sending two Intents from the calling app to Simprints ID - one for the initial action (either enrolment or identification) and one for the follow-up (either confirm identity or register last biometrics). When the scenario is one of the following:

  1. Enrolment -> register last biometrics

  2. Identification -> register last biometrics

both the initial and follow-up Intents will require a "module ID". While in most cases the module ID in both will be the same, technically it's possible to send a different one in the follow-up Intent. For example, you can send an identification intent with "Module A" and then register the last biometrics with "Module B". This will lead to Simprints ID doing an identification search against biometrics registered in "Module A" but then registering the last biometrics in "Module B". If such a setup is needed for a project we advise you to carefully consider the consequences as it can lead to unlimited duplicates in "Module B".

Legacy versions usage

To call Simprints ID versions before 2025.1.0 use the deprecated SimHelper class and handle the regular intent results:


override fun onActivityResult(requestCode: Int, resultCode: Int, intentData: Intent) {
   super.onActivityResult(requestCode, resultCode, intentData)

   // check if there were possible identified matches
   if (intentData.hasExtra(Constants.SIMPRINTS_IDENTIFICATIONS)) {
       // present identified matches to user for selection
       // just like you would do with identification
   } else if (intentData.hasExtra(Constants.SIMPRINTS_REGISTRATION)) {
     // code to complete the enrolment as you would do with enrolment 
   }
}

fun handleVerification(intentData: Intent) {
   // get the boolean flag to check if biometrics completed successfully
   val biometricsCompleted = intentData.getBooleanExtra(Constants.SIMPRINTS_BIOMETRICS_COMPLETE_CHECK)

   if (biometricsCompleted) {
      // extract the verification judgement
      val verificationIsSuccessful = intentData.getBooleanExtra(Constants.SIMPRINTS_VERIFICATION_SUCCESS)
   
      // extract the returned Verification object
      val verification = intentData.getParcelableExtra<Verification>(Constants.SIMPRINTS_VERIFICATION)
      // get confidence score
      val confidence = verification.getConfidence()
   }
}
// get the session ID, from the resulting intent
val sessionId = data.getString(Constants.SIMPRINTS_SESSION_ID,"")

// create an intent using the selected beneficiary's uniqueId, and sessionId
val intent = simHelper.confirmIdentity(context, sessionId, selectedUserUniqueId)

// OR

// create intent, using sessionID, to enrol last captured biometrics
val intent = simHelper.registerLastBiometrics("MODULE ID", sessionId)

startActivityForResult(intent, enrolmentCode)

An identification is triggered from the calling app ( just like you would in basic )

enrolment
identification