Enrollment
What is Enrolment?
Say you are a health clinic providing health care to your community's beneficiaries. You would need a way to keep track of the beneficiary's health records at your clinic, hence you would want to register them in your system and store information for subsequent visits, health issues, and treatments.
Registering a new beneficiary is the enrolment process in Simprints ID.
Enrolment Flow
Calling app creates a Register Intent using projectID, moduleID and userID and sends intent to Simprints ID
Beneficiary's biometrics get captured and processed to generate a GUID and biometric templates
Simprints ID returns the generated GUID to the calling app
The calling app receives the resulting GUID and stores it with the beneficiary's personal info.
Trigger Enrolment
LibSimptints provides an activity result contract for streamlined and type-safe integration.
To register a new beneficiary, you need to:
Register activity result handler
During the enrolment process, Simprints ID captures the beneficiary's biometric data, processes it, and then generates both a biometric template and a unique ID. Both are saved in Simprints ID, and the unique ID is returned to the calling app.
This unique ID should be extracted from the response and saved in your Android application and server together with the beneficiary information. This is how you link a record on your side with a Simprints record.
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.
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.
We have a feature called Enrolment+, that lets you check if a beneficiary has been enrolled before making a new enrolment. To see how to implement this 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?