tables_db_get_row
Retrieve a specific row from an Appwrite database table using its unique ID. Returns JSON data for the requested row entry.
Instructions
Get a row by its unique ID. This endpoint response returns a JSON object with the row data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | Database ID. | |
| table_id | Yes | Table ID. You can create a new table using the Database service [server integration](https://appwrite.io/docs/references/cloud/server-dart/tablesDB#createTable). | |
| row_id | Yes | Row ID. | |
| queries | No | Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. | |
| transaction_id | No | Transaction ID to read uncommitted changes within the transaction. |