mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
622 B
622 B
setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint
->setProject('') // Your project ID
->setSession(''); // The user session to authenticate with
$tablesDB = new TablesDB($client);
$result = $tablesDB->updateRow(
databaseId: '',
tableId: '',
rowId: '',
data: [], // optional
permissions: [Permission::read(Role::any())], // optional
transactionId: '' // optional
);