POST
/
v1
/
table
/
{name}
/
rename
curl --request POST \
  --url https://{db}.{region}.api.lancedb.com/v1/table/{name}/rename \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "new_table_name": "<string>"
}'
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
new_table_name
string
required

The new name of the table.

Response

200

Table renamed successfully