
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
- Appwrite isn't accepting the api from se...
Error creating user: AppwriteException: Server Error type: 'general_unknown', response: '{"message":"Server Error","code":500,"type":"general_unknown","versi...
- Subject: Request for temporary quota lif...
Hi Appwrite Team, our nonprofit animal rescue app on Appwrite Cloud is currently throttled due to read‑quota limits, and we need a temporary increase so rescue ...
- Type String is not a subtype of type int...
In flutter using appwrite: ^17.1.0, ```DocumentList response = await databases!.listDocuments( databaseId: "xxx", collectionId: "xxx", ...
