mirror of
https://github.com/appwrite/appwrite
synced 2026-05-12 03:28:35 +00:00
561 B
561 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 });