Tables
Insert Rows
Insert one or more rows into a table. For a single row, pass a data object. For batch insert, pass a rows array (up to 1000 rows).
post/api/v1/tables/{tableId}/rows
Path parameters
tableIdstring required
Example:tbl_92e4c6a8b0d24f1e8a3c5d7b9f0e2a14
The unique identifier of the table.
Request body
Response
Row(s) inserted successfully.
Example response
{
"data": {
"row": {
"id": "row_6b8d0f2a4c3e4e5da28f7c9b1d3f5a07"
},
"rows": [
{
"id": "row_6b8d0f2a4c3e4e5da28f7c9b1d3f5a07"
}
]
}
}