Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 446 Bytes

update-session.md

File metadata and controls

18 lines (13 loc) · 446 Bytes

import { Client, Account } from "@appwrite.io/console";

const client = new Client();

const account = new Account(client);

client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;

const promise = account.updateSession('[SESSION_ID]');

promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });