Verification
What is Verification?
Continuing with the clinic scenario, if you have a beneficiary come to your clinic with their clinic card, you will need to verify that the beneficiary is who they say they are.
This verification process involves matching previously enrolled biometric data with the present beneficiary's biometric.
Verification Flow
Calling app creates a Verify Intent using projectID, moduleID, userID, and beneficiary's uniqueID and sends intent to Simprints ID
Beneficiary's biometrics get captured and processed to validate that they match with previously enrolled biometrics using the provided unique ID
Simprints ID returns the verification result to the calling app
The calling app receives verification results, and handles the success or failure workflow.
Trigger Verification
LibSimprints provides an activity result contract for streamlined and type-safe integration.
To verify a beneficiary, you need to:
Register activity result handler
During the verification process, the present beneficiary's biometrics are captured, and the verifyGuid which is passed in the Intent is used to retrieve the previously enrolled beneficiary's biometrics. The two biometric records are then compared.
If this verification process completes successfully, a verification result containing the following properties is returned:
guid - the unique ID for the biometric record
confidence - the percentage to which the record matches the captured biometric
confidenceBand - descriptor of confidence level based on the project configuration (HIGH/MEDIUM/LOW)
isSuccess - indicates whether the verification is considered successful based on a verification match threshold set in the project settings.
Note: In Simprints ID v2024.2.0 the verification judgement flag is provided separately from the Verification object. In Simprints ID v2025.1.0 with LibSimprints v2025.1.2 it is available directly in the Verification object, in earlier versions it can be extracted from response intent directly:
data.getBooleanExtra(Constants.SIMPRINTS_VERIFICATION_SUCCESS)
Note: The confidence and confidenceBand values can then be used to determine the ranking and accuracy for the matched biometric record, to get more info on this, check here.
Launch the request
Simprints ID also accepts normal Android intents as requests but using the activity result contract is recommended to simplify the cross-application communication.
Verification Judgement
Starting with Simprints ID v2024.2.0 along with the Verification object, a "verification judgement" result will be returned. It's name is SIMPRINTS_VERIFICATION_SUCCESS, it's a Boolean and will indicate whether the verification is considered successful based on a verification match threshold set in the project settings.
Handling Alternate Scenarios
During the enrolment process, the biometric capture and processing might not be completed due to two main reasons:
A system/application error occurred. To read more on how to handle application errors check here.
The user backed out of completing the process. To read more on how to handle uncompleted workflow issues check here.
Legacy versions usage
To call Simprints ID versions before 2025.1.0 use the deprecated SimHelper
class and handle the regular intent results:
Last updated
Was this helpful?