```swift import Appwrite let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("") // Your project ID let databases = Databases(client) let result = try await databases.deleteDocument( databaseId: "", collectionId: "", documentId: "", transactionId: "" // optional ) ```