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

# Delete Runner

> Permanently delete a runner

## Overview

Permanently delete a runner from your account. This action cannot be undone.

<Warning>
  Deleting a runner is permanent. Any workflows currently using this runner may fail. Consider setting the runner status to `disabled` instead if you want to temporarily prevent its use.
</Warning>

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier (UUID) of the runner to delete.
</ParamField>

## Response

Returns a 200 OK status with no body on successful deletion.

## Example Response

```
Status: 200 OK
```

## Error Responses

<ResponseField name="401" type="error">
  Unauthorized - invalid or missing authentication token.
</ResponseField>

<ResponseField name="404" type="error">
  Not Found - runner with the specified ID does not exist or does not belong to your account.
</ResponseField>

## Notes

* This action is permanent and cannot be undone
* Consider disabling the runner instead if you want to temporarily prevent its use
* You can only delete runners that belong to your account
* After deletion, you can create a new runner with the same name or configuration if needed
