action pdfgeneratorapi_merge_templates { label: "Generate document (multiple templates)" description: "Allows to merge multiples template with data and returns base64 encoded document or public URL to a document. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted." provider: pdfgeneratorapi method: POST path: "/templates/output" encoding: json input: { type: "array" items: { type: "object" properties: { data: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } } } template: { type: "integer" description: "Template id" } } } } output: { type: "object" additionalProperties: true } }