action apptigent_convert_currency { label: "Currency - Convert currency" description: "Calculate monetary value in a different currency" provider: apptigent method: POST path: "/ConvertCurrency" encoding: json input: { type: "object" required: ["input", "source", "target"] properties: { input: { type: "number" description: "Amount to convert" } source: { type: "string" enum: ["USD", "AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HRK", "HUF", "IDR", "ILS", "INR", "ISK", "JPY", "KRW", "MXN", "MYR", "NOK", "NZD", "PHP", "PLN", "RON", "RUB", "SGD", "SEK", "THB", "TRY", "ZAR"] } target: { type: "string" enum: ["USD", "AUD", "BGN", "BRL", "CAD", "CHF", "CNY", "CZK", "DKK", "EUR", "GBP", "HKD", "HRK", "HUF", "IDR", "ILS", "INR", "ISK", "JPY", "KRW", "MXN", "MYR", "NOK", "NZD", "PHP", "PLN", "RON", "RUB", "SGD", "SEK", "THB", "TRY", "ZAR"] } } } output: { type: "object" properties: { result: { type: "number" description: "Result" } } } }