How to re-enroll, deactivate or delete a user?
Manage users on the system.
Last updated
Was this helpful?
Manage users on the system.
Last updated
Was this helpful?
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.
Re-enroll: Allows an existing user to submit a new enrollment job i.e. , , , .
Deactivate/Block: Temporarily prevents a user from running new jobs.
Flag/Unflag Fraud: Mark a user as fraudulent to fail all future jobs ran by the user.
Delete: Permanently removes a user_id
and all enrolment information (this cannot be undone).
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/enrollee
prod
for production environment i.e. https://prod.smileidentity.com/api/v2/partner/enrollee
To re-enroll a user (i.e., allow them to submit a new enrollment job under the same user_id
):
allow_new_enroll
: Set to true
to enable enrollment for an existing user.
To temporarily deactivate a user_id
, so they can't run new jobs:
active
: Set to false
to block the user. Set to true
to reactivate the user.
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 to true
to flag the user. Set to false
to re-enable the user for authentication.
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 to true
to permanently remove user data.