Table
Metadata

Restore table to a specific version

Restore table id to a specific version.

post/v1/table/{id}/restore

Path parameters

idstring required

string identifier of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, v1/namespace/$/list performs a ListNamespace on the root namespace.

Query parameters

delimiterstring

An optional delimiter of the string identifier, following the Lance Namespace spec. When not specified, the $ delimiter must be used.

Request body

idstring[]
versioninteger required

Version to restore to

Example request

{
  "id": [
    "id",
    "id"
  ],
  "version": 0
}

Response

Table restore operation result

transaction_idstring

Optional transaction identifier

Example response

{
  "transaction_id": "transaction_id"
}

Changes