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

# Verify Gitea Access

> Verify Gitea token and repository access



## OpenAPI

````yaml /openapi.json post /gitea-integration/verify
openapi: 3.0.3
info:
  title: Kaneo API
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
  version: 1.0.0
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
tags:
  - name: Organization Management
paths:
  /gitea-integration/verify:
    post:
      tags:
        - Gitea
      summary: Verify Gitea Access
      description: Verify Gitea token and repository access
      operationId: verifyGiteaAccess
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                baseUrl:
                  type: string
                  minLength: 1
                accessToken:
                  type: string
                  minLength: 1
                repositoryOwner:
                  type: string
                  minLength: 1
                repositoryName:
                  type: string
                  minLength: 1
              required:
                - baseUrl
                - accessToken
                - repositoryOwner
                - repositoryName
      responses:
        '200':
          description: Verification result
          content:
            application/json:
              schema:
                type: object
                properties:
                  isInstalled:
                    type: boolean
                  hasRequiredPermissions:
                    type: boolean
                  repositoryExists:
                    type: boolean
                  repositoryPrivate:
                    type: boolean
                    nullable: true
                  missingPermissions:
                    type: array
                    items:
                      type: string
                  message:
                    type: string
                required:
                  - isInstalled
                  - hasRequiredPermissions
                  - repositoryExists
                  - repositoryPrivate
                  - missingPermissions
                  - message
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````