what permission is needed to pull currency rates v...
# general
a
what permission is needed to pull currency rates via rest api?
m
You can send query via REST for currency fx rates SELECT id, BUILTIN.DF( baseCurrency ) as BaseCurrencyName, BUILTIN.DF( transactionCurrency ) as TransactionCurrencyName, effectiveDate, exchangeRate, fxSourceMethod FROM CurrencyRate WHERE id IN ( SELECT MAX( id ) FROM CurrencyRate WHERE effectiveDate = '4/18/2024' GROUP BY effectiveDate, baseCurrency, transactionCurrency ) ORDER BY BUILTIN.DF( baseCurrency ) DESC, BUILTIN.DF( transactionCurrency )
a
thanks! do i have to set any specific permission for the role?
m
Role should at least has view permission for Currency list
👍 1