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

# Delete Flash VSR task

> Delete a Flash VSR task with its public GENGEN task ID.

```text theme={"dark"}
DELETE https://gengen.farm/api/gengen/v1/contents/generations/tasks/{id}
```

Delete a Flash VSR task with its public `flashvsr:` ID. GENGEN verifies the local task record,
resolves the provider task ID, and forwards the delete operation.

[Try the delete workflow](https://gengen.farm/api-explorer/demos/flash-vsr-generation-delete).

## Path parameter

<ParamField path="id" type="string" required>
  Public task ID returned by the create endpoint. URL-encode the colon when placing the ID in the
  request path.
</ParamField>

```bash theme={"dark"}
curl --request DELETE \
  --url https://gengen.farm/api/gengen/v1/contents/generations/tasks/flashvsr%3A550e8400-e29b-41d4-a716-446655440000 \
  --header 'Authorization: Bearer gengen_live_xxxxxxxxxxxxxxxx'
```

## Response

A successful delete returns:

```text theme={"dark"}
204 No Content
```

There is no response body. The locally persisted task becomes `cancelled` when its previous state
was `queued` or `pending`, and `deleted` otherwise.

<Warning>
  The provider can reject deletion while a task is actively processing. Treat deletion as
  successful only after receiving `204 No Content`.
</Warning>

The task must exist in the authorized GENGEN workspace.
