Hanzo
OpenapiProjects

Deploys a caller-supplied file manifest — the deploy_site capability an agent…

Deploys a caller-supplied file manifest — the deploy_site capability an agent calls — and answers with where it went live.

POST /v1/projects/sites/deploy

Addresshttps://api.hanzo.ai/v1/projects/sites/deploy
MethodPOST
Operationpost_projects_sites_deploy
AuthAuthorization: Bearer $HANZO_API_KEY

Deploys a caller-supplied file manifest — the deploy_site capability an agent calls — and answers with where it went live.

files is a list of {path, content} pairs, the same shape the brief build emits, and it runs through the SAME guards: index.html required at the root, absolute and traversal paths rejected, per-file and total size capped, and a mobile viewport meta tag injected into every HTML document that lacks one — so a hand-built site is exactly as safe and as responsive as a generated one. slug and name are optional; a slug is derived from the name or minted.

It writes into the SAME org-scoped store as /v1/projects, ensuring a project (framework static) for the resolved slug and recording a deployment. The hosting gate runs before the upload and the debit lands once, after the site is live — a failed upload is never billed. Answers 503 when object storage is unconfigured.

Scope: a validated principal is required (403 without one) and the site is published into THAT principal's org.

Request

5 fields, body application/json (required).

FieldInTypeRequiredDescription
filesbodyprojectsFile[]Files is the whole site, inline — every file it consists of.
files[].contentbodystringContent is the file's whole text, inline. There is no upload step and no reference to fetch: a site is sent as its bytes, and each file and the site as a whole…
files[].pathbodystringPath is where the file lands in the site, RELATIVE to its root — so "index.html" is the page served at /.
namebodystringName is the site's display name.
slugbodystringSlug is the handle and public host label to publish under.

Response

StatusBodyMeaning
200projectsSiteDeployok

200 body — 6 fields.

FieldInTypeAlwaysDescription
deploymentIdbodystringDeploymentID is the deployment this publish recorded, for the history.
filesbodystring[]Files are the site-relative paths that were uploaded, sorted.
namebodystringName is the project's display name.
slugbodystringSlug is the project the site was published into, created on the fly when the slug was free.
statusbodystringStatus is the deployment status, "live" on success.
urlbodystringURL is the canonical live URL, https://<slug>.<apex> — empty when the subdomain belongs to another tenant and this site has none.

Failure carries the platform error shape — see Errors.

Examples

hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.


Projects API · All Hanzo APIs · Interactive reference

How is this guide?

On this page