Converts a currency to another currency
Mandatory fields: fromCurrencySymbol, toCurrencySymbol
let rate = await app.businessFunction({ functionName: "CurrencyConverter", methodName: "Convert", fromCurrencySymbol: "EUR", toCurrencySymbol: "USD", }); console.log(rate);
Last updated 2 years ago
Was this helpful?