Files
appwrite/docs/examples/1.8.x/console-web/examples/users/delete-target.md
2026-02-03 15:48:48 +05:30

393 B

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

const client = new Client()
    .setEndpoint('https://<REGION>.cloud.appwrite.io/v1') // Your API Endpoint
    .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const users = new Users(client);

const result = await users.deleteTarget({
    userId: '<USER_ID>',
    targetId: '<TARGET_ID>'
});

console.log(result);