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

# Delete Workflow

> Permanently delete a workflow.

## Authentication

Requires a Bearer token with `tools` scope. See [Authentication](/api-reference/authentication).

## Path Parameters

<ParamField path="id" type="string" required>
  The workflow UUID.
</ParamField>

## Response

```json theme={null}
{ "deleted": true }
```

## Example

```bash curl theme={null}
curl -X DELETE https://www.hitheo.ai/api/v1/workflows/wf_abc123 \
  -H "Authorization: Bearer $THEO_API_KEY"
```
