action pdfgeneratorapi_merge_template { label: "Generate document" description: "Merges template with data and returns base64 encoded document or a public URL to a document. You can send json encoded data in request body or a public URL to your json file as the data parameter. NB! When the public URL option is used, the document is stored for 30 days and automatically deleted." provider: pdfgeneratorapi method: POST path: "/templates/templateId/output" encoding: json input: { type: "object" properties: { id: { type: "integer" } name: { type: "string" } templateId: { type: "integer" } } required: ["templateId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }