> ## 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連携を削除

> Harness Code SCM連携を削除し、登録済みWebhookの削除を試みます。`integrations.manage_integration`権限が必要です。



## OpenAPI

````yaml /ja/api-reference/openapi.json delete /integrations/harness/{integration_uuid}
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: Corgeaのスキャン機能および脆弱性管理機能を操作するためのAPI
servers:
  - url: https://www.corgea.app/api/v1
    description: 本番サーバー
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /integrations/harness/{integration_uuid}:
    parameters:
      - name: integration_uuid
        in: path
        required: true
        description: Harness連携のUUID
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Harness連携
      summary: Harness連携を削除
      description: >-
        Harness Code
        SCM連携を削除し、登録済みWebhookの削除を試みます。`integrations.manage_integration`権限が必要です。
      operationId: deleteHarnessIntegration
      responses:
        '200':
          description: Harness連携を正常に削除しました
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: APIアクセス権または必要な権限がありません
        '404':
          description: 連携が見つかりません
components:
  responses:
    Unauthorized:
      description: トークンが無効か、指定されていません
      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キー
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Authorizationヘッダーで使用するOAuth2アクセストークン（JWT）

````