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

# Delete a task

> Soft deletes a task by ID. The task will be marked as deleted but not permanently removed from the database. Associated interactive notes will also be deleted.



## OpenAPI

````yaml /openapi.json delete /api/public/tasks/{id}
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/public/tasks/{id}:
    delete:
      tags:
        - tasks
      summary: Delete a task
      description: >-
        Soft deletes a task by ID. The task will be marked as deleted but not
        permanently removed from the database. Associated interactive notes will
        also be deleted.
      operationId: TaskPublicController_delete
      parameters:
        - name: id
          required: true
          in: path
          description: The UUID of the task to delete
          schema:
            format: uuid
            type: string
      responses:
        '200':
          description: Task deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
        '400':
          description: Invalid task ID
        '401':
          description: Unauthorized - Invalid or missing authentication token
        '404':
          description: Task not found

````