1
0
Fork 0
mirror of synced 2024-09-19 02:48:02 +12:00
appwrite/docs/examples/1.0.x/console-web/examples/health/get.md
2022-09-14 17:41:36 +05:30

405 B

import { Client, Health } from "appwrite";

const client = new Client();

const health = new Health(client);

client .setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;

const promise = health.get();

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