Forum Discussion
Logic Apps - Tracked properties for HTTP action`s INPUTS not working
The issue occures because the inputs function may not be directly supported in tracked properties for HTTP actions in Logic Apps. The error TrackedPropertiesEvaluationFailed indicates this limitation.
Fix Options:
Use Variables: Capture the HTTP input into a variable before the action and reference the variable in tracked properties:
"trackedProperties": {
"uri": "@{variables('HttpInputUri')}"
}
Use Action Metadata: Reference the input directly using:
"trackedProperties": {
"uri": "@{action('HTTP_2').inputs.uri}"
}
Check Runtime Version: Ensure you're using the latest Logic Apps runtime, as older versions may have limitations.
Reference URL: https://learn.microsoft.com/en-us/azure/logic-apps/monitor-workflows-collect-diagnostic-data?tabs=consumption