action doqs_update_template_designer_templates_id_put { label: "Update Template" provider: doqs method: PUT path: "/designer/templates/{id}" encoding: json input: { type: "object" properties: { components: { type: "array" items: { type: "object" } } css: { type: "string" } footer_html: { type: "string" } format: { type: "string" description: "An enumeration." enum: ["a0", "a1", "a2", "a3", "a4", "a5", "a6"] } header_html: { type: "string" } id: { type: "string" } name: { type: "string" } orientation: { type: "string" description: "An enumeration." enum: ["landscape", "portrait"] } preview_payload: { type: "object" } template_html: { type: "string" } } required: ["components", "css", "format", "id", "name", "orientation", "preview_payload", "template_html"] additionalProperties: false } output: { type: "object" required: ["results"] properties: { results: { type: "object" required: ["components", "css", "format", "name", "orientation", "preview_payload", "template_html"] properties: { components: { type: "array" items: { type: "object" } } created_at: { type: "string" format: "date-time" } css: { type: "string" } footer_html: { type: "string" } format: { type: "string" description: "An enumeration." enum: ["a0", "a1", "a2", "a3", "a4", "a5", "a6"] } header_html: { type: "string" } id: { type: "string" } name: { type: "string" } orientation: { type: "string" description: "An enumeration." enum: ["landscape", "portrait"] } preview_payload: { type: "object" } template_html: { type: "string" } } } } } }