action pdfgeneratorapi_copy_template { label: "Copy template" description: "Creates a copy of a template to the workspace specified in authentication parameters." provider: pdfgeneratorapi method: POST path: "/templates/templateId/copy" encoding: json input: { type: "object" properties: { name: { type: "string" } templateId: { type: "integer" } } required: ["templateId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }