tables_db_create_rows
Add new data entries to an existing Appwrite database table by specifying database ID, table ID, and row data in JSON format.
Instructions
Create new Rows. Before using this route, you should create a new table resource using either a server integration API or directly from your database console.
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). Make sure to define columns before creating rows. | |
| rows | Yes | Array of rows data as JSON objects. | |
| transaction_id | No | Transaction ID for staging the operation. |