Skip to main content
PUT
/
db
/
{table}
Upsert rows
curl --request PUT \
  --url https://api.kapso.ai/platform/v1/db/{table} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{}'
{
  "data": [
    {}
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

table
string
required

Table name

Body

application/json

Single row object or array of rows for bulk insert

Response

Rows upserted

data
object[]
required