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

# Get GitHub integration properties

Retrieves all available GitHub properties for the authenticated organization. Returns a 404 error if the GitHub integration is not configured for the organization.


## OpenAPI

````yaml https://api.getfernand.com/openapi.json get /integrations/github/properties
openapi: 3.0.3
info:
  title: Fernand API Documentation
  version: '3.0'
  description: This is the documentation for the [Fernand](https://getfernand.com) API.
  termsOfService: https://getfernand.com/terms
  contact:
    name: Fernand Support
    url: https://getfernand.com
    email: support@getfernand.com
  x-logo:
    url: https://app.getfernand.com/images/favicon/icon_128.png
servers:
  - url: https://api.getfernand.com
    description: ''
    x-last-modified: 1764750693905
security:
  - apiKeyHeader: []
externalDocs:
  description: You can access our documentation online by visiting https://api.fernand.help
  url: https://api.fernand.help
paths:
  /integrations/github/properties:
    get:
      tags:
        - GitHub Integration
      summary: Get GitHub integration properties
      description: >-
        Retrieves all available GitHub properties for the authenticated
        organization. Returns a 404 error if the GitHub integration is not
        configured for the organization.
      operationId: getGithubProperties
      responses:
        '200':
          description: GitHub properties retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      repositories:
                        type: array
                        description: List of available GitHub repositories.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the repository.
                              example: R_kgDOABCDEF
                            name:
                              type: string
                              description: Full name of the repository (owner/repo).
                              example: piedpiper/algorithm
                      labels:
                        type: array
                        description: List of available labels across all repositories.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the label.
                              example: LA_kwDOABCDEF
                            name:
                              type: string
                              description: Name of the label.
                              example: Bug
                            color:
                              type: string
                              description: Color hex code of the label.
                              example: d73a4a
                            repository_id:
                              type: string
                              description: ID of the repository this label belongs to.
                              example: R_kgDOABCDEF
                      milestones:
                        type: array
                        description: List of open milestones across all repositories.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: >-
                                Unique identifier of the milestone (null for "No
                                milestone" option).
                              example: M_kwDOABCDEF
                            title:
                              type: string
                              description: Title of the milestone.
                              example: Version 1.0
                            repository_id:
                              type: string
                              description: >-
                                ID of the repository this milestone belongs to
                                (null for "No milestone" option).
                              example: R_kgDOABCDEF
                      projects:
                        type: array
                        description: List of available GitHub projects.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the project.
                              example: PVT_kwDOABCDEF
                            title:
                              type: string
                              description: Title of the project.
                              example: Roadmap
                            repository_id:
                              type: string
                              description: ID of the repository this project belongs to.
                              example: R_kgDOABCDEF
                      workflows:
                        type: array
                        description: List of project workflows.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the workflow.
                              example: W_kwDOABCDEF
                            name:
                              type: string
                              description: Name of the workflow.
                              example: Development
                            project_id:
                              type: string
                              description: ID of the project this workflow belongs to.
                              example: PVT_kwDOABCDEF
                            repository_id:
                              type: string
                              description: ID of the repository.
                              example: R_kgDOABCDEF
                      teams:
                        type: array
                        description: List of project teams.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: Unique identifier of the team.
                              example: T_kwDOABCDEF
                            name:
                              type: string
                              description: Name of the team.
                              example: PiedPiper
                            project_id:
                              type: string
                              description: ID of the project this team belongs to.
                              example: PVT_kwDOABCDEF
                            repository_id:
                              type: string
                              description: ID of the repository.
                              example: R_kgDOABCDEF
                      users:
                        type: array
                        description: List of assignable users across all repositories.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: >-
                                Unique identifier of the user (null for
                                "Unassigned" option).
                              example: U_kgDOABCDEF
                            name:
                              type: string
                              description: Display name of the user.
                              example: Bertram Gilfoyle
                            avatar_url:
                              type: string
                              description: >-
                                URL to the user's avatar image (null for
                                "Unassigned" option).
                              example: https://avatars.githubusercontent.com/u/123456
                            repository_id:
                              type: string
                              description: >-
                                ID of the repository (null for "Unassigned"
                                option).
                              example: R_kgDOABCDEF
                      types:
                        type: array
                        description: List of available issue types.
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: >-
                                Unique identifier of the issue type (null for
                                "No type" option).
                              example: IT_kwDOABCDEF
                            name:
                              type: string
                              description: Name of the issue type.
                              example: Feature
                            color:
                              type: string
                              description: Color hex code of the issue type.
                              example: 0e8a16
                            repository_id:
                              type: string
                              description: >-
                                ID of the repository this type belongs to (null
                                for "No type" option).
                              example: R_kgDOABCDEF
        '400':
          description: Error loading data from GitHub.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: >-
                      An unknown error occured while trying to load data on
                      Github
        '404':
          description: GitHub integration not found for this organization.
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      description: >-
        Authenticate your account by including your secret key in API requests.

        You can manage your API keys in the
        [Dashboard](https://app.getfernand.com/).


        Authentication to the API is performed by using the HTTP Header
        X-API-Key.
      name: X-API-Key
      in: header
      x-last-modified: 1764750344730

````