POST
/
v1
/
tables
/
{table_id}
/
rows
Create Table Rows
curl --request POST \
  --url https://api.extruct.ai/v1/tables/{table_id}/rows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "rows": [
    {
      "data": {
        "input": "https://extruct.ai"
      }
    },
    {
      "data": {
        "input": "https://openai.com"
      }
    }
  ],
  "run": false
}'
[
  {
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "is_missing_inputs": true,
    "parent_row_id": "<string>",
    "data": {},
    "metadata": {},
    "parent_data": {}
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

table_id
string
required

Query Parameters

include_parent_data
boolean
default:false

Body

application/json

Response

200
application/json

Successful Response

The response is of type RowDataOutputSchema · object[].