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

# Remove GitHub App Settings



## OpenAPI

````yaml /openapi.json delete /api/settings/github
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/settings/github:
    delete:
      tags:
        - settings
      summary: Remove GitHub App Settings
      operationId: remove_github_app_settings_api_settings_github_delete
      responses:
        '204':
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````