Apology for the delay.
Yes, you are correct that once you have updated the path to the right resource URL string then everything should be working as expected.
The issue is that the path is not correctly formed as looks like you are using the ARM template parameters. You cannot use the ARM template variable for the logic app runtime. You need to create your own parameter when the operation is evaluating in runtime as in this scenario.
"path": "@markus.bohland@hotmail.de ('/subscriptions/', subscription().id, '/resourcegroups/', resourceGroup().name, '/providers/Microsoft.DataFactory/factories/', parameters('DatafactoryName'), '/pipelines/', parameters('PipelineName'), '/CreateRun' )",
At a deeper level in your logic app's resource definition, your workflow definition's parameters object declares parameters for the values to use at your logic app's runtime.
One more observation when you export the ARM template then the path will be :
"path": "/subscriptions/@{encodeURIComponent('yoursubscriptionID')}/resourcegroups/@{encodeURIComponent('yourresourcegroup')}/providers/Microsoft.DataFactory/factories/@{encodeURIComponent('yourdatafactory')}/pipelines/@{encodeURIComponent('yourpipelinename')}/CreateRun",
I was able to repro the same issue if I change the path and it is not correctly formed and the designer shows the same issue as you have observed. Once I used the above the designer doesn't show any error.
If you want to use your own parameter then you need to define parameters section under properties of your logic app resource as you have defined it for @parameters('$connections')['ADFConnectionDetail']['connectionId']
References:
https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-resource-manager-templates-overview#template-parameters
https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-workflow-actions-triggers
Hope the above helps and please let me know if you have any queries.
Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.