action clicksend_create_new_email_template_from_master_template { label: "Create New Email Template from Master Template" description: "" provider: clicksend method: POST path: "/email/templates" encoding: json input: { type: "object" required: ["template_id_master", "template_name"] properties: { template_id_master: { type: "number" description: "The ID of the master template you want to base on." } template_name: { type: "string" description: "The intended name for the new template." } } } output: { type: "object" additionalProperties: true } }