I\'m creating an ARM template that deploys an Web App (an Mvc Api) and a Logic App.
I\'m attempting to define an HTTP Action within the Logic App such that it dynami
You need to escape the inner single quotes, i.e. try
"uri": "[concat(variables('apiSettings').Uri, '/@{triggerBody()[''Id'']}/ScanningInProgress')]"
Alternatively you can use the dot notation to reference the property, i.e.
"uri": "[concat(variables('apiSettings').Uri, '/@{triggerBody().Id}/ScanningInProgress')]"