Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

add_row_batch Add multiple rows to a table at once. Each item in rows is a map of column name → value. For linked identifiers: pass {“linkedTableId”: ”…”, “linkedRowId”: ”…”} instead of a plain string for the identifier column. This creates a cross-table reference. Use lookup_table_cells on the source table first to get the row IDs. For oneMany columns: pass an array of row IDs from the linked table (resolved automatically).

Parameters

tableId
string
required
rows
array<object>
required
Array of row data objects (column name → value). Include the identifier column. For linked identifiers: {“Game”: {“linkedTableId”: “abc”, “linkedRowId”: “def”}}. E.g. [{“Employee Name”: “Alice”, “Salary”: 60000}, …]