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

# Delete Task

> Delete a task permanently.

## Path Parameters

<ParamField path="id" type="string" required>
  Task ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE http://localhost:3000/api/v1/tasks/clxyz789 \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "message": "Task deleted successfully"
  }
  ```
</ResponseExample>
