Request Account Delete

The Request Account Delete feature in Twinr allows you to open account delete request form.

We’ve provided the JavaScript function twinr_request_account_delete() to make it easy for you to initiate the account deletion process.

To allow users to request their account delete from within the app, simply call the twinr_request_account_delete() function in your website’s JavaScript.

// Trigger account delete when the user requests it
twinr_request_account_delete();

You can integrate this function into your app’s settings page or profile section, where users typically manage their account details. For example, when a user clicks on a “Delete My Account” button, the twinr_request_account_delete() function can be triggered to initiate the process. For example:

<button onclick="twinr_request_account_delete()">Delete My Account</button>

Last updated

Was this helpful?