Hanzo
OpenapiFramework

Replace a draft document's field data wholesale.

PUT semantics: the stored field data BECOMES the body, so a field the body omits is not left at its previous value.

PUT /v1/framework/{doctype}/{name}

Addresshttps://api.hanzo.ai/v1/framework/{doctype}/{name}
MethodPUT
Operationput_framework_by_doctype_by_name
AuthAuthorization: Bearer $HANZO_API_KEY

PUT semantics: the stored field data BECOMES the body, so a field the body omits is not left at its previous value. The body is the document's own field data — the same metadata-defined open object the create takes, and the same reason this operation publishes no request schema.

Only a DRAFT can be edited. A document that has been submitted or cancelled is immutable and the write is refused as a conflict, so the submit lifecycle cannot be bypassed by a plain update — cancel it first, and note that a cancelled document can be deleted but never re-submitted or re-edited. The engine validates the new data against the DocType, runs before_save (which may reject), writes, then runs the after hooks, and answers 200 with the stored document plus its managed envelope, Password fields redacted.

The document name in the path is percent-decoded before it is matched, so a name containing a space is addressed as it is stored. An unknown DocType or document is not found, and the same answer covers a document that exists in another tenant: the org comes from the validated principal and is part of the store key, so a caller cannot learn that another org's document exists. Write rights on the DocType are required, decided by the engine's permission calculus.

For a Single DocType the path name is ignored — there is one instance per org and this writes it.

Request

2 fields.

FieldInTypeRequiredDescription
doctypepathstringyes
namepathstringyes

Response

The document declares no response body for this operation. It answers 200 on success and the platform error shape on failure — see Errors.

Examples

hanzo framework doctype set <doctype> <name>

Framework API · All Hanzo APIs · Interactive reference

How is this guide?

On this page