action doqs_list_templates_designer_templates_get { label: "List Templates" provider: doqs method: GET path: "/designer/templates/" encoding: json input: { type: "object" properties: { limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["results"] properties: { results: { type: "array" items: { type: "object" required: ["name", "template_html", "css", "format", "orientation", "components", "preview_payload"] 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" } } } } } } }