action clicksend_create_a_template { label: "Create a Template" description: "Create new template." provider: clicksend method: POST path: "/sms/templates" encoding: json input: { type: "object" required: ["body", "template_name"] properties: { body: { type: "string" description: "Your template body." } template_name: { type: "string" description: "Your template name." } } } output: { type: "object" additionalProperties: true } }