Files
Jake Barnby f85bf446e6 Sync docs
2025-08-26 15:40:03 +12:00

549 B

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

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

const projects = new Projects(client);

const result = await projects.createWebhook({ projectId: '<PROJECT_ID>', name: '', events: [], url: '', security: false, enabled: false, // optional httpUser: '<HTTP_USER>', // optional httpPass: '<HTTP_PASS>' // optional });

console.log(result);