Files
appwrite/docs/examples/1.7.x/client-apple/examples/functions/create-execution.md
Jake Barnby 7687c99480 Add docs
2025-05-18 02:25:38 +12:00

506 B

import Appwrite import AppwriteEnums

let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("<YOUR_PROJECT_ID>") // Your project ID

let functions = Functions(client)

let execution = try await functions.createExecution( functionId: "<FUNCTION_ID>", body: "", // optional async: false, // optional path: "", // optional method: .gET, // optional headers: [:], // optional scheduledAt: "" // optional )