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

# Delete a pipeline version

> Soft-delete a pipeline version



## OpenAPI

````yaml /swagger.yml delete /public/pipelines/{pipelineId}/versions/{versionId}
openapi: 3.0.0
info:
  title: Public API Docs
  description: Clerk Public API
  version: '1.0'
  contact: {}
servers:
  - url: https://web-api.clerk.chat
    description: Production server
  - url: http://localhost:3000
    description: Production server
security: []
tags: []
paths:
  /public/pipelines/{pipelineId}/versions/{versionId}:
    delete:
      tags:
        - Pipelines
      summary: Delete a pipeline version
      description: Soft-delete a pipeline version
      operationId: PublicPipelinesController_deleteVersion
      parameters:
        - name: pipelineId
          in: path
          required: true
          description: The ID of the pipeline
          schema:
            type: string
            format: uuid
        - name: versionId
          in: path
          required: true
          description: The ID of the pipeline version
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: Pipeline version deleted successfully
        '400':
          description: Invalid request body
        '401':
          description: Unauthorized request
        '403':
          description: You do not have permission to access this resource
        '404':
          description: Resource not found
        '422':
          description: Invalid request parameters
        '429':
          description: Too many requests for this resource
        '500':
          description: Internal server error
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: apiKey

````