String concatenation issue with Azure Logic Apps

后端 未结 1 494
忘掉有多难
忘掉有多难 2021-01-18 03:31

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

相关标签:
1条回答
  • 2021-01-18 04:15

    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')]"
    
    0 讨论(0)
提交回复
热议问题