action apptigent_convert_case { label: "Text - Convert case" description: "Convert string to upper, lower or title case" provider: apptigent method: POST path: "/ConvertCase" encoding: json input: { type: "object" required: ["alphacase", "input"] properties: { alphacase: { type: "string" description: "Case of conversion result" enum: ["Upper", "Lower", "Title"] } input: { type: "string" description: "String containing the text to convert" } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }