v5

OpenAPI 3.1.02026-08-025631,1012.8 MB
Scaffold Templates

Get Scaffold Template Manifest

Render a scaffold template as a Mixpeek manifest.

Converts the scaffold's configuration (namespace, bucket, collections, retriever, taxonomies, clusters) into declarative Infrastructure-as-Code YAML — the same format used by POST /v1/manifest/apply and GET /v1/manifest/export.

Returns both the YAML string (manifest_yaml) and the parsed manifest dict (manifest).

get/v1/templates/scaffolds/{template_id}/manifest

Path parameters

template_idstring required

Scaffold template ID

Scaffold template ID

Response

Successful Response

template_idstring required

Scaffold template ID

namestring required

Scaffold template display name

manifest_yamlstring required

Manifest rendered as YAML (same style as manifest export)

manifestobject required

Manifest as a JSON-safe dict (parseable by the manifest parser)

Example response

{
  "manifest": {
    "metadata": {
      "name": "Video Understanding"
    },
    "namespaces": [],
    "version": "1.0"
  },
  "manifest_yaml": "version: '1.0'\nmetadata:\n  name: Video Understanding\n...",
  "name": "Video Understanding",
  "template_id": "tmpl_scaffold_video_understanding"
}