How to re-enroll, deactivate or delete a user?
Manage users on the system.
This page explains how to manage users in our system, covering:
Re-enrollment
Deactivation (Blocking)
Flagging and re-enabling suspicious users
Permanent deletion
The unique user_id
sent with each job is central to these operations.
Overview
Re-enroll: Allows an existing user to submit a new enrollment job i.e. Biometric KYC, Document Verification, Enhanced Document Verification , SmartSelfie™ Registration.
Deactivate/Block: Temporarily prevents a user from running new jobs.
Flag/Unflag Fraud: Mark a user as fraudulent to fail all future authentication jobs ran by the user.
Delete: Permanently removes a
user_id
and all enrolment information (this cannot be undone).
Use the same endpoint with different flags to manage each type of action.
Endpoint
POST https://[env].smileidentity.com/api/v2/partner/enrollee
Replace [env]
with either:
portal
for sandbox environment i.e. https://portal.smileidentity.com/api/v2/partner/enrolleeprod
for production environment i.e. https://prod.smileidentity.com/api/v2/partner/enrollee
Re-enroll a User ID
To re-enroll a user (i.e., allow them to submit a new enrollment job under the same user_id
):
allow_new_enroll
: Set totrue
to enable enrollment for an existing user.
Deactivate (Block) a User ID
To temporarily deactivate a user_id
, so they can't run new jobs:
active
: Set tofalse
to block the user. Set totrue
to reactivate the user.
Re-enable a User Flagged for Suspected Fraud
User IDs flagged for suspected fraudulent activity can be re-enabled for authentication by changing the is_fraudulent
flag to false
. When is_fraudulent
is true
, the system continues to process jobs and collect data about potential fraudsters, but all jobs will be marked as failed. This allows for continued monitoring while preventing unauthorized actions. To re-enable a user previously flagged as fraudulent:
is_fraudulent
: Set totrue
to flag the user. Set tofalse
to re-enable the user for authentication.
Delete or Permanently Block a User ID
Deleting a user is permanent and cannot be reversed. Whenever possible, we recommend re-enrolling users instead of deleting them.
To completely remove a user and free up the user_id
for future use:
delete
: Set totrue
to permanently remove user data.
Last updated
Was this helpful?