Skip to main content

Delete Account with Password Confirmation


Use Delete Account with Password Confirmation to verify the current password before account deletion.



This screen includes:

#ElementDescription
1Modal titleDisplays Confirm account deletion.
2Close actionDismisses the modal.
3Warning textExplains that deletion is permanent and the account cannot be restored.
4Current password fieldRequires the current account password and includes a visibility toggle.
5Delete account actionSubmits the account deletion request.
6Keep account actionCancels deletion and closes the modal.

Workflow

  1. Open Manage account.
  2. Select Delete account.
  3. Display the password confirmation modal.
  4. Enter the current password.
  5. Enable Delete account after a valid password entry.
  6. Submit the deletion request.
  7. Show success or error state.

Validations

ScenarioApp BehaviorSDK Output
Password field is emptyKeep delete action unavailablestate = invalid
Password format is invalidDisplay password validation errorerror = invalid_password
Password is incorrectDisplay credentials errorerror = invalid_credentials
Session invalidBlock deletion requeststate = unauthenticated
Delete request succeedsComplete account deletionstate = deleted
Delete request failsDisplay error statestate = error

Actions

ScenarioApp BehaviorSDK Output
Delete account selectedOpen password confirmation modalPUT /api/v3/account/delete/confirm
Password enteredUpdate password field statepassword = updated
Visibility toggle selectedShow or hide password textpasswordVisible = true/false
Delete account action selectedSubmit deletion requestPOST /api/v3/account/delete/password
Keep account selectedCancel deletion and close the modalstate = cancelled
Close selectedClose the modal without deletionstate = dismissed
Delete request succeedsDelete account data and end sessionstate = deleted
Delete request failsPreserve modal statestate = error

Endpoint Resources

Delete Data by Password

PUT 

v3/account/delete/confirm

Returns the delete account confirmation screen that requires password verification..

Personal Data by Password

POST 

v3/account/delete/password/delete

Deletes the authenticated user account after valid password confirmation.