Hi ,
I have to convert below JSON format to CSV.
{
"base": "EUR",
"date": "2020-11-15",
"rates": {
"MXN": 24.150965,
"HUF": 357.500528,
"MYR": 4.880332,
}
}
Output should be in below format. Please suggest to achieve it Logic App/Power Automation
Base, date, fromCurrency, exchange rate
EUR,2020-11-15,"MXN", 24.150965
EUR,2020-11-15,"HUF", 357.500528
EUR,2020-11-15, "MYR", 4.880332
Thanks
NS