appwrite/docs/examples/1.0.x/client-web/examples/functions/create-execution.md

18 lines
444 B
Markdown
Raw Normal View History

2022-09-01 04:49:47 +00:00
import { Client, Functions } from "appwrite";
const client = new Client();
const functions = new Functions(client);
client
.setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint
.setProject('5df5acd0d48c2') // Your project ID
;
const promise = functions.createExecution('[FUNCTION_ID]');
promise.then(function (response) {
console.log(response); // Success
}, function (error) {
console.log(error); // Failure
});