# `design.draftFromTemplate` Instantiate a starter template as the draft. - **method + path**: `POST /v1/design/draft-from-template` - **TR label**: Şablondan taslak - **auth**: authenticated · scope gates: any of `admin`, `design:write` — “design:write yetkisi gerekli” - **agentPolicy**: `workspace` — writes confined to the caller's own draft workspace or staging — every token kind executes it directly. - **effects**: `db`, `kv` - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/design.draftFromTemplate.json](/schemas/routes/design.draftFromTemplate.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "template": { "type": "string", "minLength": 1, "maxLength": 40 } }, "required": [ "template" ] } ```