action doqs_preview_designer_templates_preview_post { label: "Preview" provider: doqs method: POST path: "/designer/templates/preview" encoding: json input: { type: "object" required: ["css", "data", "template_html"] properties: { css: { type: "string" } data: { type: "object" } footer_html: { type: "string" } header_html: { type: "string" } template_html: { type: "string" } } } output: { type: "object" required: ["results"] properties: { results: { type: "object" required: ["html"] properties: { html: { type: "string" } } } } } }