action gsmtasks_notification_templates_create { label: "notification_templates_create" provider: gsmtasks method: POST path: "/notification_templates/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } created_at: { type: "string" format: "date-time" } email_reply_to: { type: "string" format: "email" } emails: { type: "array" items: { type: "string" format: "email" } } event: { type: "object" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } is_active: { type: "boolean" } message: { type: "string" } name: { type: "string" } phones: { type: "array" items: { type: "string" } } recipient: { type: "object" } scheduled_time_change: { type: "boolean" } state: { type: "object" } task_category: { type: "object" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } via_app: { type: "boolean" } via_email: { type: "boolean" } via_sms: { type: "boolean" } } required: ["account", "created_at", "id", "message", "name", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }