Skip to main content
Module

x/appwrite/mod.ts>Account

[READ-ONLY] Official Appwrite Deno SDK 🦕
Go to Latest
class Account
extends Service
Re-export
import { Account } from "https://deno.land/x/appwrite@1.0.0/mod.ts";

Methods

createRecovery(email: string, url: string): Promise<Models.Token>

Create Password Recovery

Sends the user an email with a temporary secret key for password reset. When the user clicks the confirmation link he is redirected back to your app password reset URL with the secret key and email address values attached to the URL query string. Use the query string params to submit a request to the PUT /account/recovery endpoint to complete the process. The verification link sent to the user's email address is valid for 1 hour.

createVerification(url: string): Promise<Models.Token>

Create Email Verification

Use this endpoint to send a verification message to your user email address to confirm they are the valid owners of that address. Both the userId and secret arguments will be passed as query parameters to the URL you have provided to be attached to the verification email. The provided URL should redirect the user back to your app and allow you to complete the verification process by verifying both the userId and secret parameters. Learn more about how to complete the verification process. The verification link sent to the user's email address is valid for 7 days.

Please note that in order to avoid a Redirect Attack, the only valid redirect URLs are the ones from domains you have set when adding your platforms in the console interface.

delete(): Promise<Response>

Delete Account

Delete a currently logged in user account. Behind the scene, the user record is not deleted but permanently blocked from any access. This is done to avoid deleted accounts being overtaken by new users with the same email address. Any user-related resources like documents or storage files should be deleted separately.

deleteSession(sessionId: string): Promise<Response>

Delete Account Session

Use this endpoint to log out the currently logged in user from all their account sessions across all of their different devices. When using the option id argument, only the session unique ID provider will be deleted.

Delete All Account Sessions

Delete all sessions from the user account and remove any sessions cookies from the end client.

get<Preferences extends Models.Preferences>(): Promise<Models.User<Preferences>>

Get Account

Get currently logged in user data as JSON object.

Get Account Logs

Get currently logged in user list of latest security activity logs. Each log returns user IP address, location and date and time of log.

getPrefs<Preferences extends Models.Preferences>(): Promise<Preferences>

Get Account Preferences

Get currently logged in user preferences as a key-value object.

getSession(sessionId: string): Promise<Models.Session>

Get Session By ID

Use this endpoint to get a logged in user's session using a Session ID. Inputting 'current' will return the current session being used.

Get Account Sessions

Get currently logged in user list of active sessions across different devices.

updateEmail<Preferences extends Models.Preferences>(email: string, password: string): Promise<Models.User<Preferences>>

Update Account Email

Update currently logged in user account email address. After changing user address, user confirmation status is being reset and a new confirmation mail is sent. For security measures, user password is required to complete this request. This endpoint can also be used to convert an anonymous account to a normal one, by passing an email address and a new password.

updateName<Preferences extends Models.Preferences>(name: string): Promise<Models.User<Preferences>>

Update Account Name

Update currently logged in user account name.

updatePassword<Preferences extends Models.Preferences>(password: string, oldPassword?: string): Promise<Models.User<Preferences>>

Update Account Password

Update currently logged in user password. For validation, user is required to pass in the new password, and the old password. For users created with OAuth and Team Invites, oldPassword is optional.

updatePrefs<Preferences extends Models.Preferences>(prefs: object): Promise<Models.User<Preferences>>

Update Account Preferences

Update currently logged in user account preferences. You can pass only the specific settings you wish to update.

updateRecovery(
userId: string,
secret: string,
password: string,
passwordAgain: string,
): Promise<Models.Token>

Create Password Recovery (confirmation)

Use this endpoint to complete the user account password reset. Both the userId and secret arguments will be passed as query parameters to the redirect URL you have provided when sending your request to the POST /account/recovery endpoint.

Please note that in order to avoid a Redirect Attack the only valid redirect URLs are the ones from domains you have set when adding your platforms in the console interface.

updateVerification(userId: string, secret: string): Promise<Models.Token>

Create Email Verification (confirmation)

Use this endpoint to complete the user email verification process. Use both the userId and secret parameters that were attached to your app URL to verify the user email ownership. If confirmed this route will return a 200 status code.