Parallel Works
API Reference/GitHub/Get GitHub App configuration
get/api/platform/integrations/github

Get GitHub App configuration

This is a system-level route, so the response will be independent of the currently authenticated user.

This is a platform-admin only route.

Returns the platform-level GitHub App configuration.

Operation ID: get-github-app-config

Responses

Responses

OK

GitHubAppConfigResponse
appId
required
integer(int64)
appName
required
string
appSlug
required
string
clientId
required
string
clientSecretConfigured
required
boolean
privateKeyConfigured
required
boolean
webhookSecretConfigured
required
boolean
Example Response
{
  "appId": 0,
  "appName": "string",
  "appSlug": "string",
  "clientId": "string",
  "clientSecretConfigured": true,
  "privateKeyConfigured": true,
  "webhookSecretConfigured": true
}

Example Request

cURL
curl -X GET "https://activate.parallel.works/api/platform/integrations/github" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json"