mirror of
https://github.com/appwrite/sdk-for-android.git
synced 2026-04-07 19:17:49 +00:00
370 B
370 B
import io.appwrite.Client import io.appwrite.services.Database
val client = Client(context) .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID
val databaseService = Database(client) val response = databaseService.updateDocument("[COLLECTION_ID]", "[DOCUMENT_ID]", {}) val json = response.body?.string()