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

# getGitHubIntegration

> Get GitHub integration for a project



## OpenAPI

````yaml GET /github-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:
  /github-integration/project/{projectId}:
    get:
      tags:
        - GitHub
      summary: Get GitHub integration
      description: >-
        Get the GitHub integration for a project, or null when none is
        configured.
      operationId: getGitHubIntegration
      parameters:
        - schema:
            type: string
          required: true
          name: projectId
          in: path
      responses:
        '200':
          description: GitHub integration details, or null
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitHubIntegration'
        '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 access to the project's workspace
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    GitHubIntegration:
      type:
        - object
        - 'null'
      properties:
        id:
          type: string
        projectId:
          type: string
        repositoryOwner:
          type: string
        repositoryName:
          type: string
        installationId:
          type:
            - number
            - 'null'
          description: The GitHub App installation that grants access to the repository.
        branchPattern:
          type: string
          description: Template used to name branches created for a task.
        commentTaskLinkOnGitHubIssue:
          type: boolean
          description: >-
            When on, Kaneo comments a link back to the task on the linked GitHub
            issue.
        isActive:
          type:
            - boolean
            - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - projectId
        - repositoryOwner
        - repositoryName
        - installationId
        - isActive
        - createdAt
        - updatedAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````