PUT
/
v1
/
tables
/
{name}
/
data
Update Data
curl --request PUT \
  --url https://{db}.{region}.api.lancedb.com/v1/tables/{name}/data \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "updates": [
    [
      "price",
      "price + 0.10"
    ]
  ],
  "predicate": "id in (1, 2, 3)"
}'
This response does not have an example.

Authorizations

x-api-key
string
header
required

Path Parameters

name
string
required

name of the table

Body

application/json

Response

200

Update successful