Can we access parsed JSON key using logic app variable?
I have a string type variable with value as FY23-01 like below:
And a parsed JSON like below:
{
"@odata.etag": "",
"FY23-01": "1",
"FY23-02": "2",
"FY23-03": "3",
"FY23-04": "4",
}
Now I want to get the value of key "FY23-01". I am using below expression and it always returns blank:
body('Parse_JSON')?[variables('secondContent')]
Is this supported to use variables in key reference for JSON