mirror of
https://github.com/appwrite/appwrite
synced 2026-05-17 14:08:39 +00:00
423 B
423 B
import { Client, Users } from "appwrite";
const client = new Client();
const users = new Users(client);
client .setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;
const promise = users.deleteSessions('[USER_ID]');
promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });