Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/appwrite/src/services/account.ts>Account#create

[READ-ONLY] Official Appwrite Deno SDK 🦕
Latest
method Account.prototype.create
import { Account } from "https://deno.land/x/appwrite@11.0.0/src/services/account.ts";

Create account

Use this endpoint to allow a new user to register a new account in your project. After the user registration completes successfully, you can use the /account/verfication route to start verifying the user email address. To allow the new user to login to their new account, you need to create a new account session.

Type Parameters

Preferences extends Models.Preferences

Parameters

userId: string
email: string
password: string
optional
name: string

Returns

Promise<Models.User<Preferences>>