action apptigent_validate_email { label: "Text - Validate email" description: "Determine if an email address is valid" provider: apptigent method: POST path: "/ValidateEmail" encoding: json input: { type: "object" required: ["source"] properties: { source: { type: "string" description: "String variable or text value" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }