Rename a table to a new path within the same storage configuration
Renames all Delta table files (parquet data + `_delta_log/`) from the current storage path to a new path in the same store. The table is deregistered from the old path and re-discovered at the new path. **Required scope:** `storage:write`
Authorization
BearerAuth Security scheme for OpenAPI endpoints. Validates both JWT tokens and API keys.
In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Request body for renaming (moving) a Delta table within the same storage configuration.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/tables/string/string/string/rename" \ -H "Content-Type: application/json" \ -d '{ "destinationPath": "string" }'{ "objectsRenamed": 0, "bytesTransferred": 0, "message": "string"}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}{ "code": "string", "message": "string", "request_id": "string", "details": [ { "field": "string", "message": "string" } ]}Move a table to a different storage configuration
Moves all Delta table files (parquet data + `_delta_log/`) from the current storage location to the specified destination. The table is deregistered from the source and re-discovered at the destination. **Required scope:** `storage:write`
Compact small files into larger ones to improve read performance
Rewrites many small Parquet files into fewer, larger ones. This is a non-destructive operation — the original files are replaced atomically via a Delta Lake commit. **Required scope:** `tables:modify`