add_table_records_tool
Add new records to a table in Google Sheets by specifying the spreadsheet, sheet, and table names. Input a list of values matching the table’s column structure, and the tool appends them directly to the end of the table.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
records | Yes | List of records to add into the table. Each record must be a list of values matching the table's column structure. Values can be strings, numbers, booleans, or None. EXAMPLE: [ ['John Doe', 30, 'HR', 50000], ['Jane Smith', 25, 'Engineering', 60000], ['Bob Johnson', 35, 'Marketing', 55000] ] | |
sheet_name | Yes | The name of the sheet containing the table | |
spreadsheet_name | Yes | The name of the Google Spreadsheet | |
table_name | Yes | Name of the table to add records into |