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

# Delete note

> Soft-delete a note.



## OpenAPI

````yaml /openapi.json delete /notes/{id}
openapi: 3.1.0
info:
  title: OpenWhispr API
  version: 1.0.0
  description: Manage notes, folders, transcriptions, and usage programmatically.
servers:
  - url: https://api.openwhispr.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /notes/{id}:
    delete:
      tags:
        - Notes
      summary: Delete note
      description: Soft-delete a note.
      operationId: deleteNote
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Note ID.
      responses:
        '204':
          description: Note deleted.
        '404':
          description: Note not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with owk_live_

````