> ## 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 instead of a plain string for the…

`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

<ParamField path="tableId" type="string" required />

<ParamField path="rows" type="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}, ...]
</ParamField>
