
I want implement a particular user when they tap on Delete Account and there while deleting I am getting 3 options so which one is good
- deleteIdentity
- deleteSession
- deleteSessions
TL;DR
Summary: The developer wants to delete a user account in auth and is unsure which option to choose: deleteIdentity, deleteSession, or deleteSessions.
Solution:
- deleteIdentity: This option deletes the user's identity, logs them out, and permanently removes their account.
- deleteSession: This option deletes the user's current session, logging them out, but their account remains active.
- deleteSessions: This option deletes all sessions for the user, logging them out from all devices, but their account remains active.
Based on the requirement of deleting the entire account, the recommended option would be to use deleteIdentity.Recommended threads
- Hola equipo de soporte,
Hola equipo de soporte, Estoy desarrollando una Function en Appwrite Cloud con Node.js 22 y el siguiente package.json: { "name": "upload-whitelist", "type"...
- Sites 30MB limit from GitHub
I’m deploying a site from github as Other type on the Hobby plan. It is actually a Flutter web app but it’s in a subdirectory with the root being an html landin...
- Google OAuth2 Login Gets Stuck in Redire...
I'm facing an issue with the Google OAuth2 login flow on my Flutter Android app using the Appwrite SDK. After a successful sign-in with Google, the browser ente...
