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

# Delete Gitea integration

> Unlink a project from its Gitea repository.



## OpenAPI

````yaml /openapi.json delete /gitea-integration/project/{projectId}
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /gitea-integration/project/{projectId}:
    delete:
      tags:
        - Gitea
      summary: Delete Gitea integration
      description: Unlink a project from its Gitea repository.
      operationId: deleteGiteaIntegration
      parameters:
        - schema:
            type: string
          required: true
          name: projectId
          in: path
      responses:
        '200':
          description: The integration was removed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GiteaDeleteResult'
        '400':
          description: Unknown project, or its workspace could not be determined
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Missing or invalid credentials
        '403':
          description: No workspace access, or missing workspace:manage_settings
          content:
            text/plain:
              schema:
                type: string
        '404':
          description: Gitea integration not found
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    GiteaDeleteResult:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
      required:
        - success
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````