POST
/
v1
/
table
/
{name}
/
update
/
curl --request POST \
  --url https://{db}.{region}.api.lancedb.com/v1/table/{name}/update/ \
  --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