1
0
Fork 0
mirror of synced 2024-09-19 19:07:21 +12:00
appwrite/docs/examples/1.0.x/console-web/examples/projects/create-domain.md
2022-09-14 17:41:36 +05:30

440 B

import { Client, Projects } from "appwrite";

const client = new Client();

const projects = new Projects(client);

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

const promise = projects.createDomain('[PROJECT_ID]', '');

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