Hanzo AI
OpenapiProvider

Create backfill

Seeds the native todo with the EXISTING issues across the org's granted repos (default state=open); the webhook keeps them live thereafter.

POST /v1/provider/github/issues/backfill

Addresshttps://api.hanzo.ai/v1/provider/github/issues/backfill
MethodPOST
Operationpost_provider_github_issues_backfill
AuthAuthorization: Bearer $HANZO_API_KEY

Seeds the native todo with the EXISTING issues across the org's granted repos (default state=open); the webhook keeps them live thereafter. Org-scoped by the validated principal — a caller only ever backfills its OWN org. Synchronous + bounded (a total time budget and an issue cap) so it returns the counts directly; idempotent by ExtRef, so a re-run continues where a truncated pass left off and never duplicates.

Request

1 field, body application/json (required).

FieldInTypeRequiredDescription
statebodystringState is the GitHub issue state to walk: "open" (the default), "closed" or "all".

Response

StatusBodyMeaning
200provider.githubBackfillResultok
defaultproblem-detailsrefused

200 body — 6 fields.

FieldInTypeAlwaysDescription
createdbodyinteger (int64)Created is how many native issues this pass created.
failedbodyinteger (int64)Failed is how many repos or issues errored; the pass continues past each.
issuesbodyinteger (int64)Issues is how many upstream issues were seen.
reposbodyinteger (int64)Repos is how many granted repos were walked (archived/disabled are skipped).
truncatedbodybooleanTruncated is set when the time budget or the issue cap stopped the pass early.
updatedbodyinteger (int64)Updated is how many existing native issues this pass refreshed.

Failure carries the platform error shape — see Errors.

Examples

hanzo provider github issues backfill

Provider API · All Hanzo APIs · Interactive reference

How is this guide?

On this page