servers

Get server repository connection

Get the GitHub repository connection for a server, if one exists.

get/servers/{namespace}/repo

Path parameters

namespacestring required

Response

Repository connection found

repoOwnerstring required
repoNamestring required
baseDirectorystring required
branchstring nullable required
autoDeployboolean nullable required
isPrivateboolean required
type'github' required

Example response

{
  "repoOwner": "octocat",
  "repoName": "hello-world",
  "baseDirectory": ".",
  "branch": "main",
  "autoDeploy": true,
  "type": "github"
}

Changes