DELETE /v1/tables/{id}
Delete a Table
Delete a table by ID or name, with soft/hard delete options
DELETE
DELETE /v1/tables/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Delete a Table
Delete a table by ID or fully qualified name. Supports soft delete (default), hard delete, and restore operations.Delete by ID
UUID of the table to delete.
Recursively delete child entities.
Permanently delete the table. If
false, the table is soft-deleted and can be restored.Delete by Name
UseDELETE /v1/tables/name/{fqn} to delete by fully qualified name.
Fully qualified name of the table (e.g.,
snowflake_prod.analytics.public.customers).Recursively delete child entities.
Permanently delete the table.
Restore a Soft-Deleted Table
UsePUT /v1/tables/restore to restore a soft-deleted table.
UUID of the soft-deleted table to restore.
DELETE /v1/tables/{id}
Returns
Soft delete returns the table object withdeleted: true. Hard delete returns no content (204). Restore returns the restored table object.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to delete this table |
404 | NOT_FOUND | Table with given ID or FQN does not exist |