Skip to main content
POST
/
tables
/
{table_id}
/
rows
/
batch
Batch Insert Rows
curl --request POST \
  --url https://api.example.com/tables/{table_id}/rows/batch \
  --header 'Content-Type: application/json' \
  --cookie fastapiusersauth= \
  --data '
{
  "rows": [
    {}
  ]
}
'
{
  "rows_inserted": 123
}

Authorizations

fastapiusersauth
string
cookie
required

Path Parameters

table_id
string<uuid4>
required

Query Parameters

workspace_id
string<uuid>
required

Body

application/json

Request body for batch inserting rows.

rows
Rows · object[]
required

Response

Successful Response

Response for batch insert operation.

rows_inserted
integer
required