Hosting Service List Resource¶
Added in 2.5
Provides information on registered hosting services.
Review Board has a list of supported remote hosting services for repositories and bug trackers. These hosting services contain the information needed for Review Board to link with any repositories hosted on that service and access content for display in the diff viewer.
This resource allows for querying that list and determining what capabilities of the hosting service can be used by Review Board.
Details¶
Name | hosting_services |
URI | /api/hosting-services/ |
Token Policy ID | hosting_service |
HTTP Methods |
|
Parent Resource | Root List Resource |
Child Resources | |
Anonymous Access | Yes, if anonymous site access is enabled |
Links¶
Name | Method | Resource |
---|---|---|
self | GET | Hosting Service List Resource |
HTTP GET¶
Lists all the hosting services supported by Review Board.
Unlike most resources, this will not be paginated. The number of hosting services will be small, and it’s useful to get them all in one request.
Request Parameters¶
counts-onlyBoolean | If specified, a single count field is returned with the number of results, instead of the results themselves. |
max-resultsInteger | The maximum number of results to return in this list. By default, this is 25. There is a hard limit of 200; if you need more than 200 results, you will need to make more than one request, using the “next” pagination link. |
startInteger | The 0-based index of the first result in the list. The start index is usually the previous start index plus the number of previous results. By default, this is 0. |
Errors¶
100 - Does Not ExistHTTP 404 - Not Found | Object does not exist |
101 - Permission DeniedHTTP 403 - Forbidden | You don’t have permission for this |
103 - Not Logged InHTTP 401 - Unauthorized | You are not logged in |
105 - Invalid Form DataHTTP 400 - Bad Request | One or more fields had errors |
112 - OAuth2 Missing Scope ErrorHTTP 403 - Forbidden | Your OAuth2 token lacks the necessary scopes for this request. |
113 - OAuth2 Access Denied ErrorHTTP 403 - Forbidden | OAuth2 token access for this resource is prohibited. |
Examples¶
application/vnd.reviewboard.org.hosting-services+json¶
$ curl http://reviews.example.com/api/hosting-services/ -H "Accept: application/json"
Vary: Accept, Cookie
Item-Content-Type: application/vnd.reviewboard.org.hosting-service+json
Content-Type: application/vnd.reviewboard.org.hosting-services+json
X-Content-Type-Options: nosniff
{
"hosting_services": [
{
"id": "rbgateway",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=rbgateway",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=rbgateway",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/rbgateway/",
"method": "GET"
}
},
"name": "Review Board Gateway",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"rbgateway_repo_name": {
"help_text": "The name of the repository. This is the name specified in the configuration file for rb-gateway.",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": true,
"supported_scmtools": [
"Git",
"Mercurial"
],
"supports_bug_trackers": false,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Mercurial"
]
},
{
"id": "kiln",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=kiln",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=kiln",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/kiln/",
"method": "GET"
}
},
"name": "Kiln On Demand",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"kiln_account_domain": {
"help_text": "The domain used for your Kiln site, as in https://<domain>.kilnhg.com/",
"name": "Account domain",
"required": true
},
"kiln_group_name": {
"help_text": "The Kiln group name. Defaults to \"Group\".",
"name": "Group name",
"required": true
},
"kiln_project_name": {
"help_text": "The Kiln project name. Defaults to \"Repositories\".",
"name": "Project name",
"required": true
},
"kiln_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Mercurial"
],
"supports_bug_trackers": false,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Mercurial"
]
},
{
"id": "googlecode",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=googlecode",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=googlecode",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/googlecode/",
"method": "GET"
}
},
"name": "Google Code",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"googlecode_project_name": {
"help_text": "",
"name": "Project name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Mercurial",
"Subversion"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Mercurial",
"Subversion"
]
},
{
"id": "bitbucket",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=bitbucket",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=bitbucket",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/bitbucket/",
"method": "GET"
}
},
"name": "Bitbucket",
"needs_authorization": true,
"plans": {
"other-user": {
"fields": {
"bitbucket_other_user_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in https://bitbucket.org/<username>/<repo_name>/",
"name": "Repository name",
"required": true
},
"bitbucket_other_user_username": {
"help_text": "The username of the user who owns the repository. This is the <username> in https://bitbucket.org/<username>/<repo_name>/",
"name": "Username",
"required": true
}
},
"name": "Other User"
},
"personal": {
"fields": {
"bitbucket_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in https://bitbucket.org/<username>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Personal"
},
"team": {
"fields": {
"bitbucket_team_name": {
"help_text": "The name of the team. This is the <team_name> in https://bitbucket.org/<team_name>/<repo_name>/",
"name": "Team name",
"required": true
},
"bitbucket_team_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in https://bitbucket.org/<team_name>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Team"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Mercurial"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git"
]
},
{
"id": "splat",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=splat",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=splat",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/splat/",
"method": "GET"
}
},
"name": "Splat",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"splat_org_name": {
"help_text": "",
"name": "Splat Organization Name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "sourceforge",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=sourceforge",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=sourceforge",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/sourceforge/",
"method": "GET"
}
},
"name": "SourceForge",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"sourceforge_project_name": {
"help_text": "",
"name": "Project name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Bazaar",
"CVS",
"Mercurial",
"Subversion"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Bazaar",
"CVS",
"Mercurial",
"Subversion"
]
},
{
"id": "github",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=github",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=github",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/github/",
"method": "GET"
}
},
"name": "GitHub",
"needs_authorization": true,
"plans": {
"private": {
"fields": {
"github_private_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in http://github.com/<username>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Private"
},
"private-org": {
"fields": {
"github_private_org_name": {
"help_text": "The name of the organization. This is the <org_name> in http://github.com/<org_name>/<repo_name>/",
"name": "Organization name",
"required": true
},
"github_private_org_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in http://github.com/<org_name>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Private Organization"
},
"public": {
"fields": {
"github_public_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in http://github.com/<username>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Public"
},
"public-org": {
"fields": {
"github_public_org_name": {
"help_text": "The name of the organization. This is the <org_name> in http://github.com/<org_name>/<repo_name>/",
"name": "Organization name",
"required": true
},
"github_public_org_repo_name": {
"help_text": "The name of the repository. This is the <repo_name> in http://github.com/<org_name>/<repo_name>/",
"name": "Repository name",
"required": true
}
},
"name": "Public Organization"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": true,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git"
]
},
{
"id": "fogbugz",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=fogbugz",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=fogbugz",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/fogbugz/",
"method": "GET"
}
},
"name": "FogBugz",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"fogbugz_account_domain": {
"help_text": "The domain used for your FogBugz site, as in https://<domain>.fogbugz.com/",
"name": "Account domain",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "trac",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=trac",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=trac",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/trac/",
"method": "GET"
}
},
"name": "Trac",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"trac_url": {
"help_text": "",
"name": "Trac URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "gitlab",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=gitlab",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=gitlab",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/gitlab/",
"method": "GET"
}
},
"name": "GitLab",
"needs_authorization": true,
"plans": {
"group": {
"fields": {
"gitlab_group_name": {
"help_text": "",
"name": "GitLab group name",
"required": true
},
"gitlab_group_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Group"
},
"personal": {
"fields": {
"gitlab_personal_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Personal"
}
},
"self_hosted": true,
"supported_scmtools": [
"Git"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git"
]
},
{
"id": "gitorious",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=gitorious",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=gitorious",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/gitorious/",
"method": "GET"
}
},
"name": "Gitorious",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"gitorious_project_name": {
"help_text": "",
"name": "Project name",
"required": true
},
"gitorious_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": true,
"supported_scmtools": [
"Git"
],
"supports_bug_trackers": false,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git"
]
},
{
"id": "unfuddle",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=unfuddle",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=unfuddle",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/unfuddle/",
"method": "GET"
}
},
"name": "Unfuddle",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"unfuddle_account_domain": {
"help_text": "This is the <tt>domain</tt> part of <tt>domain.unfuddle.com</tt>",
"name": "Unfuddle account domain",
"required": true
},
"unfuddle_project_id": {
"help_text": "This is the numeric project ID found in the URL on your Project page (for example, https://myaccount.unfuddle.com/a#/projects/<b><id></b>)",
"name": "Unfuddle project ID",
"required": true
},
"unfuddle_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Subversion"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Subversion"
]
},
{
"id": "codebasehq",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=codebasehq",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=codebasehq",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/codebasehq/",
"method": "GET"
}
},
"name": "Codebase HQ",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"codebasehq_project_name": {
"help_text": "",
"name": "Project name",
"required": true
},
"codebasehq_repo_name": {
"help_text": "The short name of your repository. This can be found by clicking the Settings button on the right-hand side of the repository browser.",
"name": "Repository short name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Subversion",
"Mercurial"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Subversion",
"Mercurial"
]
},
{
"id": "beanstalk",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=beanstalk",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=beanstalk",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/beanstalk/",
"method": "GET"
}
},
"name": "Beanstalk",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"beanstalk_account_domain": {
"help_text": "This is the <tt>domain</tt> part of <tt>domain.beanstalkapp.com</tt>",
"name": "Beanstalk account domain",
"required": true
},
"beanstalk_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Subversion"
],
"supports_bug_trackers": false,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Subversion"
]
},
{
"id": "jira",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=jira",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=jira",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/jira/",
"method": "GET"
}
},
"name": "JIRA",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"jira_url": {
"help_text": "",
"name": "JIRA URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "gerrit",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=gerrit",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=gerrit",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/gerrit/",
"method": "GET"
}
},
"name": "Gerrit",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"gerrit_project_name": {
"help_text": "The name of the project on Gerrit.",
"name": "Project name",
"required": true
},
"gerrit_ssh_port": {
"help_text": "The port configured for SSH access to Gerrit.",
"name": "SSH port",
"required": true
},
"gerrit_url": {
"help_text": "The full URL of your Gerrit instance, as in <tt>http://gerrit.example.com/</tt>.",
"name": "Gerrit URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git"
],
"supports_bug_trackers": false,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git"
]
},
{
"id": "assembla",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=assembla",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=assembla",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/assembla/",
"method": "GET"
}
},
"name": "Assembla",
"needs_authorization": true,
"plans": {
"": {
"fields": {
"assembla_project_id": {
"help_text": "The project ID, as shown in the URL (https://www.assembla.com/spaces/<b><project_id></b>), or your Perforce repository's Depot Host.",
"name": "Project ID",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Perforce",
"Subversion"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Perforce",
"Subversion"
]
},
{
"id": "redmine",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=redmine",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=redmine",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/redmine/",
"method": "GET"
}
},
"name": "Redmine",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"redmine_url": {
"help_text": "",
"name": "Redmine URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "versionone",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=versionone",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=versionone",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/versionone/",
"method": "GET"
}
},
"name": "VersionOne",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"versionone_url": {
"help_text": "",
"name": "VersionOne URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "bugzilla",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=bugzilla",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=bugzilla",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/bugzilla/",
"method": "GET"
}
},
"name": "Bugzilla",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"bugzilla_url": {
"help_text": "",
"name": "Bugzilla URL",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": false,
"supports_two_factor_auth": false,
"visible_scmtools": []
},
{
"id": "fedorahosted",
"links": {
"accounts": {
"href": "http://reviews.example.com/api/hosting-service-accounts/?service=fedorahosted",
"method": "GET"
},
"repositories": {
"href": "http://reviews.example.com/api/repositories/?hosting-service=fedorahosted",
"method": "GET"
},
"self": {
"href": "http://reviews.example.com/api/hosting-services/fedorahosted/",
"method": "GET"
}
},
"name": "Fedora Hosted",
"needs_authorization": false,
"plans": {
"": {
"fields": {
"fedorahosted_repo_name": {
"help_text": "",
"name": "Repository name",
"required": true
}
},
"name": "Default"
}
},
"self_hosted": false,
"supported_scmtools": [
"Git",
"Mercurial",
"Subversion"
],
"supports_bug_trackers": true,
"supports_list_remote_repositories": false,
"supports_repositories": true,
"supports_two_factor_auth": false,
"visible_scmtools": [
"Git",
"Mercurial",
"Subversion"
]
}
],
"links": {
"self": {
"href": "http://reviews.example.com/api/hosting-services/",
"method": "GET"
}
},
"stat": "ok",
"total_results": 21
}