action apptigent_translate_string { label: "Text - Translate string" description: "Translate a string into a different language" provider: apptigent method: POST path: "/TranslateString" encoding: json input: { type: "object" required: ["input", "language"] properties: { input: { type: "string" description: "String containing the text to be translated" } language: { type: "string" description: "Translation language" enum: ["Arabic", "Chinese (Simplified)", "Czech", "Danish", "Dutch", "English", "Finnish", "French", "German", "Greek", "Hindi", "Hungarian", "Italian", "Japanese", "Klingon", "Korean", "Norweigan", "Polish", "Portuguese", "Russian", "Spanish", "Swedish", "Turkish", "Vietnamese", "Welsh"] } } } output: { type: "object" properties: { result: { type: "string" description: "Result" } } } }