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

# Delete v1conversations



## OpenAPI

````yaml /openapi/managed.yaml delete /v1/conversations/{conversation_id}
openapi: 3.1.0
info:
  title: DreamLayer Managed Image API
  version: '1'
  description: Opaque conversational image execution for runtimes, apps, and agents.
servers:
  - url: https://api.dreamlayer.io
security:
  - bearerAuth: []
paths:
  /v1/conversations/{conversation_id}:
    delete:
      operationId: deleteConversation
      parameters:
        - $ref: '#/components/parameters/Version'
        - $ref: '#/components/parameters/ConversationId'
      responses:
        '204':
          description: Terminal conversation deleted
components:
  parameters:
    Version:
      name: DreamLayer-Version
      in: header
      required: true
      schema:
        type: string
        const: '1'
    ConversationId:
      name: conversation_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````