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

# Delete Consultation



## OpenAPI

````yaml delete /api/consultation/{consultationID}
openapi: 3.0.0
info:
  title: WithAI API
  version: 0.0.1
servers:
  - url: https://www.getwith.ai
security: []
paths:
  /api/consultation/{consultationID}:
    delete:
      summary: Delete Consultation
      parameters:
        - name: consultationID
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Successful deletion

````