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

# Dataset.delete_collection

```python theme={"system"}
def Dataset.delete_collection(collection: str | UUID | CollectionClient) -> None
```

Delete a collection in the dataset.

## Parameters

<ParamField path="collection" type="str | UUID | CollectionClient">
  The collection to delete. Can be specified by name, id, or as a collection object.
</ParamField>

<RequestExample>
  ```python Python theme={"system"}
  dataset.delete_collection("My-collection")
  ```
</RequestExample>
