OpenapiIntegrations
Lists the projects the org's GitLab connection can reach — membership projects,…
Lists the projects the org's GitLab connection can reach — membership projects, most recently active first.
GET /v1/integrations/gitlab/projects
| Address | https://api.hanzo.ai/v1/integrations/gitlab/projects |
| Method | GET |
| Operation | get_integrations_gitlab_projects |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists the projects the org's GitLab connection can reach — membership projects, most recently active first.
Request
GET /v1/integrations/gitlab/projects takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | gitlabProjectsOut | ok |
200 body — 10 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
account | body | string | — | Account is the connected GitLab username, so a client can label the list without a second call. |
projects | body | gitlabProjectView[] | — | Projects is every project the token reaches, newest activity first. |
projects[].cloneUrl | body | string | — | CloneURL is the https remote to clone. |
projects[].defaultBranch | body | string | — | DefaultBranch is the branch a clone lands on ("main" when GitLab names none, which is what an empty project reports). |
projects[].description | body | string | — | Description is the project's own, empty when it has none. |
projects[].fullName | body | string | — | FullName is the namespace path ("acme/widgets", "acme/team/widgets" for a subgroup) — the string GitLab calls path_with_namespace. |
projects[].htmlUrl | body | string | — | HTMLURL is the project's page. |
projects[].name | body | string | — | Name is the project's path segment ("widgets"), not its display name. |
projects[].private | body | boolean | — | Private is true for anything not publicly visible (private or internal). |
projects[].pushedAt | body | string | — | PushedAt is RFC3339 last activity, so a client can sort or say "2h ago". |
Failure carries the platform error shape — see Errors.
Examples
hanzo integrations gitlab projectsimport { Configuration, IntegrationsApi } from 'hanzoai';
const api = new IntegrationsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getIntegrationsGitlabProjects();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import IntegrationsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = IntegrationsApi(client).get_integrations_gitlab_projects()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IntegrationsAPI.GetIntegrationsGitlabProjects(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, integrations_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = integrations_api::get_integrations_gitlab_projects(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.IntegrationsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new IntegrationsApi(client).getIntegrationsGitlabProjects();curl https://api.hanzo.ai/v1/integrations/gitlab/projects \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches integrations through the integrations tool, which names its 45 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_connectors"
}
}
}'How is this guide?