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

# Delete a presentation

> Permanently delete one presentation from this instance.

[Read the presentation workflow guide](/api-guides/presentation-generation-flows).



## OpenAPI

````yaml /archive/v0.9.0-beta/openapi/self-hosted.json delete /api/v1/ppt/presentation/{id}
openapi: 3.1.0
info:
  title: Presenton Self-hosted API
  version: v0.9.0-beta
  description: Supported public API served by a self-hosted Presenton deployment.
servers:
  - url: http://localhost:5001
    description: Local self-hosted instance
security: []
tags:
  - name: Presentations
    description: Generate and manage presentations.
  - name: Files and media
    description: Upload source files and images.
  - name: Templates and design
    description: Select reusable presentation designs.
  - name: Async and webhooks
    description: Monitor background work and receive events.
paths:
  /api/v1/ppt/presentation/{id}:
    delete:
      tags:
        - Presentation
      summary: Delete a presentation
      description: >-
        Permanently delete one presentation from this instance.


        [Read the presentation workflow
        guide](/api-guides/presentation-generation-flows).
      operationId: delete_presentation_api_v1_ppt_presentation__id__delete
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Id
      responses:
        '204':
          description: Successful Response
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - BasicAuth: []
      externalDocs:
        description: Read the presentation workflow guide
        url: /api-guides/presentation-generation-flows
components:
  responses:
    Unauthorized:
      description: Authentication is missing or invalid.
    ServerError:
      description: Presenton or one of its configured dependencies failed.
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic

````