appwrite/docs/examples/0.11.x/client-apple/examples/database/create-document.md

21 lines
515 B
Markdown
Raw Normal View History

import Appwrite
func main() {
let client = Client()
.setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
.setProject("5df5acd0d48c2") // Your project ID
2021-10-14 10:07:14 +00:00
let database = Database(client)
database.createDocument(
collectionId: "[COLLECTION_ID]",
data:
) { result in
switch result {
case .failure(let error):
print(error.message)
case .success(let document):
print(String(describing: document)
}
}
}