mirror of
https://github.com/appwrite/appwrite
synced 2026-05-15 04:59:01 +00:00
345 B
345 B
import { Client, Proxy } from "@appwrite.io/console";
const client = new Client() .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2'); // Your project ID
const proxy = new Proxy(client);
const result = await proxy.updateRuleVerification( '<RULE_ID>' // ruleId );
console.log(response);