```swift import Appwrite import AppwriteEnums let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID let functions = Functions(client) let execution = try await functions.createExecution( functionId: "", body: "", // optional async: false, // optional path: "", // optional method: .gET, // optional headers: [:], // optional scheduledAt: "" // optional ) ```