Imports the selected (or all) granted repos into git.hanzo.ai.
Imports the selected (or all) granted repos into git.hanzo.ai.
POST /v1/integrations/github/repos/import
| Address | https://api.hanzo.ai/v1/integrations/github/repos/import |
| Method | POST |
| Operation | post_integrations_github_repos_import |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Imports the selected (or all) granted repos into git.hanzo.ai. The selection is intersected with the installation's GRANTED set, so a client can never import a repo the App was not granted (org isolation + a grant check). The import runs in a bounded background worker (don't block the request), so the answer is 202 Accepted; poll GET /v1/integrations/github/repos for the per-repo status to flip to imported.
Request
2 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
all | body | boolean | — | All imports every repository the installation grants, instead of naming them. |
repos | body | string[] | — | Repos names the repositories to import, either owner-qualified ("hanzo-apps/ai") or as a bare name ("ai"); a trailing ".git" is stripped. |
Response
| Status | Body | Meaning |
|---|---|---|
202 | githubImportOut | accepted |
202 body — 2 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
queued | body | integer | — | Queued is how many repositories were handed to the background importer. |
repos | body | string[] | — | Repos names those repositories, in the installation's listing order. |
Failure carries the platform error shape — see Errors.
Examples
hanzo integrations github repos importimport { Configuration, IntegrationsApi } from 'hanzoai';
const api = new IntegrationsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postIntegrationsGithubReposImport({ all: false, repos: ["<repos>"] });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).post_integrations_github_repos_import(all=False, repos=["<repos>"])cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IntegrationsAPI.PostIntegrationsGithubReposImport(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::post_integrations_github_repos_import(&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).postIntegrationsGithubReposImport();curl -X POST https://api.hanzo.ai/v1/integrations/github/repos/import \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"all": false,
"repos": [
"<repos>"
]
}'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?