Skip to main content
GET
/
integrations
/
github
/
properties
Get GitHub integration properties
curl --request GET \
  --url https://api.getfernand.com/integrations/github/properties \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "repositories": [
      {
        "id": "R_kgDOABCDEF",
        "name": "piedpiper/algorithm"
      }
    ],
    "labels": [
      {
        "id": "LA_kwDOABCDEF",
        "name": "Bug",
        "color": "d73a4a",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "milestones": [
      {
        "id": "M_kwDOABCDEF",
        "title": "Version 1.0",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "projects": [
      {
        "id": "PVT_kwDOABCDEF",
        "title": "Roadmap",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "workflows": [
      {
        "id": "W_kwDOABCDEF",
        "name": "Development",
        "project_id": "PVT_kwDOABCDEF",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "teams": [
      {
        "id": "T_kwDOABCDEF",
        "name": "PiedPiper",
        "project_id": "PVT_kwDOABCDEF",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "users": [
      {
        "id": "U_kgDOABCDEF",
        "name": "Bertram Gilfoyle",
        "avatar_url": "https://avatars.githubusercontent.com/u/123456",
        "repository_id": "R_kgDOABCDEF"
      }
    ],
    "types": [
      {
        "id": "IT_kwDOABCDEF",
        "name": "Feature",
        "color": "0e8a16",
        "repository_id": "R_kgDOABCDEF"
      }
    ]
  }
}
Retrieves all available GitHub properties for the authenticated organization. Returns a 404 error if the GitHub integration is not configured for the organization.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Response

GitHub properties retrieved successfully.

data
object