docs-v2/content/influxdb3/enterprise/admin/tables/delete.md

933 B

title description menu weight list_code_example related source
Delete a table Use the [`influxdb3 delete table` command](/influxdb3/enterprise/reference/cli/influxdb3/delete/table/) or the [HTTP API](/influxdb3/enterprise/api/v3/) to delete a table from a specified database in InfluxDB 3 Enterprise. Supports both soft delete and hard delete operations.
influxdb3_enterprise
parent
Manage tables
203 ```sh # CLI influxdb3 delete table \ --database <DATABASE_NAME> \ --token <AUTH_TOKEN> \ <TABLE_NAME> # HTTP API curl -X DELETE "http://localhost:8181/api/v3/configure/table?db=<DATABASE_NAME>&table=<TABLE_NAME>" \ --header "Authorization: Bearer <AUTH_TOKEN>" ```
/influxdb3/enterprise/reference/cli/influxdb3/delete/table/
/influxdb3/enterprise/api/v3/
/shared/influxdb3-admin/tables/delete.md