> ## 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.

# WorkflowClient.delete

```python theme={"system"}
def WorkflowClient.delete(workflow_or_slug: Workflow | str) -> None
```

Delete a workflow.

## Parameters

<ParamField path="workflow_or_slug" type="Workflow | str" required>
  The workflow or workflow slug to delete.
</ParamField>

<RequestExample>
  ```python Python theme={"system"}
  workflow_client.delete("scene-processing")
  ```
</RequestExample>
