get
/api/platform/integrations/githubGet 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-configResponses
Responses
OK
GitHubAppConfigResponse
appIdrequired
integer(int64)appNamerequired
stringappSlugrequired
stringclientIdrequired
stringclientSecretConfiguredrequired
booleanprivateKeyConfiguredrequired
booleanwebhookSecretConfiguredrequired
booleanExample Response
{
"appId": 0,
"appName": "string",
"appSlug": "string",
"clientId": "string",
"clientSecretConfigured": true,
"privateKeyConfigured": true,
"webhookSecretConfigured": true
}Example Request
cURLcurl -X GET "https://activate.parallel.works/api/platform/integrations/github" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"