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

# Harness-Integration löschen

> Löscht eine Harness-Code-SCM-Integration und versucht, ihre registrierten Webhooks zu entfernen. Erfordert die Berechtigung `integrations.manage_integration`.



## OpenAPI

````yaml /de/api-reference/openapi.json delete /integrations/harness/{integration_uuid}
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: >-
    API für die Interaktion mit den Scan- und
    Schwachstellenmanagement-Funktionen von Corgea
servers:
  - url: https://www.corgea.app/api/v1
    description: Produktionsserver
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /integrations/harness/{integration_uuid}:
    parameters:
      - name: integration_uuid
        in: path
        required: true
        description: UUID der Harness-Integration
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Harness-Integrationen
      summary: Harness-Integration löschen
      description: >-
        Löscht eine Harness-Code-SCM-Integration und versucht, ihre
        registrierten Webhooks zu entfernen. Erfordert die Berechtigung
        `integrations.manage_integration`.
      operationId: deleteHarnessIntegration
      responses:
        '200':
          description: Harness-Integration erfolgreich gelöscht
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: API-Zugriff oder erforderliche Berechtigung verweigert
        '404':
          description: Integration nicht gefunden
components:
  responses:
    Unauthorized:
      description: Ungültiges oder fehlendes Token
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Missing or invalid authorization header
  securitySchemes:
    CorgeaToken:
      type: apiKey
      in: header
      name: CORGEA-TOKEN
      description: API-Key für die Authentifizierung
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth2-Access-Token (JWT) im Authorization-Header

````