> ## Documentation Index
> Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete table

> Permanently delete a table and all its rows.

## Path parameters

<ParamField path="table_id" type="string" required>
  The unique identifier of the table to delete.
</ParamField>

## Response

Returns `204 No Content` on success. The table, all its rows, and the associated job are permanently removed.

<Warning>
  This action is irreversible. All extracted data for this table is permanently deleted.
</Warning>

<RequestExample>
  ```typescript TypeScript theme={null}
  await client.tables.delete("tbl_abc123");
  ```

  ```python Python theme={null}
  client.tables.delete("tbl_abc123")
  ```

  ```bash cURL theme={null}
  curl -X DELETE "https://hub.banditshq.com/api/v1/tables/tbl_abc123" \
    -H "Authorization: Bearer lasso_..."
  ```
</RequestExample>
