> ## 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.

# Delete a Harness integration

> Deletes a Harness Code SCM integration and attempts to remove its registered webhooks. Requires the `integrations.manage_integration` permission.



## OpenAPI

````yaml /api-reference/openapi.json delete /integrations/harness/{integration_uuid}
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: >-
    API for interacting with Corgea's scanning and vulnerability management
    features
servers:
  - url: https://www.corgea.app/api/v1
    description: Production server
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /integrations/harness/{integration_uuid}:
    parameters:
      - name: integration_uuid
        in: path
        required: true
        description: Harness integration UUID
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Harness integrations
      summary: Delete a Harness integration
      description: >-
        Deletes a Harness Code SCM integration and attempts to remove its
        registered webhooks. Requires the `integrations.manage_integration`
        permission.
      operationId: deleteHarnessIntegration
      responses:
        '200':
          description: Harness integration deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: API access or required permission denied
        '404':
          description: Integration not found
components:
  responses:
    Unauthorized:
      description: Invalid or missing 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 for authentication
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth2 access token (JWT) in the Authorization header

````