Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/appwrite/mod.ts>Functions#createExecution

[READ-ONLY] Official Appwrite Deno SDK 🦕
Go to Latest
method Functions.prototype.createExecution
Re-export
import { Functions } from "https://deno.land/x/appwrite@0.4.0/mod.ts";

Create Execution

Trigger a function execution. The returned object will return you the current execution status. You can ping the Get Execution endpoint to get updates on the current execution status. Once this endpoint is called, your function execution process will start asynchronously.

Type Parameters

T extends unknown

Parameters

functionId: string
optional
data: string

Returns

Promise<T>