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_idand all enrolment information (this cannot be undone).
Endpoint
POST https://[env].smileidentity.com/api/v2/partner/enrollee
Replace [env] with either:
portalfor sandbox environment i.e. https://portal.smileidentity.com/api/v2/partner/enrolleeprodfor 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": true,
"email": "<Your email address>",
"environment": "<test | production>",
"partner_id": "<Your partner ID>",
"signature": "<Your signature>",
"timestamp": "<Timestamp from generate_signature()>",
"user_id": "<User ID>"
}allow_new_enroll: Set totrueto 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": false,
"email": "<Your email address>",
"environment": "<test | production>",
"partner_id": "<Your partner ID>",
"signature": "<Your signature>",
"timestamp": "<Timestamp from generate_signature()>",
"user_id": "<User ID>"
}active: Set tofalseto block the user. Set totrueto 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": false,
"email": "<Your email address>",
"environment": "<test | production>",
"partner_id": "<Your partner ID>",
"signature": "<Your signature>",
"timestamp": "<Timestamp from generate_signature()>",
"user_id": "<User ID>"
}is_fraudulent: Set totrueto flag the user. Set tofalseto 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.
Once deleted, the user_id cannot be reused.
{
"delete": true,
"email": "<Your email address>",
"environment": "<test | production>",
"partner_id": "<Your partner ID>",
"signature": "<Your signature>",
"timestamp": "<Timestamp from generate_signature()>",
"user_id": "<User ID>"
}delete: Set totrueto permanently remove user data.
Last updated
Was this helpful?

