appwrite/docs/examples/1.8.x/client-android/kotlin/tables/update-row.md
2025-07-28 11:46:43 +05:30

526 B

import io.appwrite.Client import io.appwrite.coroutines.CoroutineCallback import io.appwrite.services.Tables

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

val tables = Tables(client)

val result = tables.updateRow( databaseId = "<DATABASE_ID>", tableId = "<TABLE_ID>", rowId = "<ROW_ID>", data = mapOf( "a" to "b" ), // (optional) permissions = listOf("read("any")"), // (optional) )