Hello,
I am building a flow to update the exchange rate of the currencies in my "Currencies" Table using an API from the 'Get Exchange Rates' Action based on the video: How to filter a JSON object with dynamic keys with Power Automate - YouTube

The output of Action called Select is as follows:
{
"body": [
{
"Currency": "USD",
"Rate": "1"
},
{
"Currency": "AED",
"Rate": "3.6725"
},
{
"Currency": "AFN",
"Rate": "71.154"
},
{
"Currency": "ALL",
"Rate": "95.1122"
},
...
,
{
"Currency": "ZWL",
"Rate": "5798.6005"
}
]
}
In the Dataverse Table 'Currencies', how can I update the 'exchangerate' (based on the relevant 'isocurrencycode', where the 'isocurrencycode' column should be equal to the 'Currency' Key in the returned output above)? I am not being able to set the new rate.
Eg: If the returned Dataverse row's 'isocurrencycode' is 'USD', the 'exchangerate' should be set to 1 (as returned above by Select).