Create backfill
Seeds the native todo with the EXISTING Linear issues the caller's key can see (default state=open); the webhook keeps them live thereafter.
POST /v1/provider/linear/issues/backfill
| Address | https://api.hanzo.ai/v1/provider/linear/issues/backfill |
| Method | POST |
| Operation | post_provider_linear_issues_backfill |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Seeds the native todo with the EXISTING Linear issues the caller's key can see (default state=open); the webhook keeps them live thereafter. Synchronous and bounded, idempotent by ExtRef.
Request
1 field, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
state | body | string | — | State is the set of issues to walk: "open" (the default), "closed" or "all". |
Response
| Status | Body | Meaning |
|---|---|---|
200 | provider.linearBackfillResult | ok |
default | problem-details | refused |
200 body — 5 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
created | body | integer (int64) | — | Created is how many native issues this pass created. |
failed | body | integer (int64) | — | Failed is how many issues errored; the pass continues past each. |
issues | body | integer (int64) | — | Issues is how many Linear issues were seen. |
truncated | body | boolean | — | Truncated is set when the time budget or the issue cap stopped the pass early. |
updated | body | integer (int64) | — | Updated is how many existing native issues this pass refreshed. |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider linear issues backfillimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postProviderLinearIssuesBackfill({ state: "<state>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProviderApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProviderApi(client).post_provider_linear_issues_backfill(state="<state>")cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.PostProviderLinearIssuesBackfill(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, provider_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = provider_api::post_provider_linear_issues_backfill(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProviderApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new ProviderApi(client).postProviderLinearIssuesBackfill();The method above is the one at the current release of the document. [email protected] (npm) was generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/provider/linear/issues/backfill \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"state": "<state>"
}'MCP declares no tool for provider — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?