Skip to main content
POST
/
orgs
/
{org_id}
/
kbs
/
{kb_id}
/
tables
/
{table_name}
/
records
cURL
curl --request POST \
  --url https://dev.timbal.ai/orgs/{org_id}/kbs/{kb_id}/tables/{table_name}/records \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "records": [
    {}
  ]
}'

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
integer
required
kb_id
integer
required
table_name
string
required

Body

application/json
records
object[]
required

Array of records to insert or update (at least one record is required)

Response

204

Records upserted successfully