mirror of
https://github.com/appwrite/appwrite
synced 2026-05-08 17:51:12 +00:00
552 B
552 B
import { Client, Users } from "@appwrite.io/console";
const client = new Client();
const users = new Users(client);
client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;
const promise = users.createScryptModifiedUser('[USER_ID]', 'email@example.com', 'password', '[PASSWORD_SALT]', '[PASSWORD_SALT_SEPARATOR]', '[PASSWORD_SIGNER_KEY]');
promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });