List Team Repo Manager Integrations
Get all repo manager integrations for a team
GET
/
v2
/teams
/{team_id}
/repo_manager_integrations
Header Parameters
Authorization
Requiredstring
Value: "Bearer <token>"; visit the "User Settings" page in the DevZero dashboard to generate a token
Path Parameters
team_id
Requiredstring
ID of team
Query Parameters
type
string
If specified, only return repo manager integrations of the specified type
Value in:
"github" | "bitbucket" | "gitlab"
curl -X GET "https://api.devzero.io/backend/v0/v2/teams/string/repo_manager_integrations?type=github" \
-H "Authorization: string"
OK
[
{
"config_url": "string",
"github_install_url": "string",
"github_target_name": "string",
"github_target_url": "string",
"id": "string",
"oauth_auth_url": "string",
"oauth_base_url": "string",
"oauth_client_id": "string",
"oauth_client_secret": "string",
"oauth_git_clone_prefix": "string",
"oauth_redirect_url": "string",
"oauth_scopes": [
"string"
],
"oauth_token_url": "string",
"repo_manager": "github",
"team_id": "string"
}
]