I have a situation :
The webhook looks as follows
If I redeploy without deleting the logicapp it retains the previous URL
But when I delete the logic app and deploy it generates the new URL
Please guide me how to find the URL of the http trigger so that I can bind it to my service bus webhook. Or is there any way to retain the previous url even if I delete and deploy the logicapp .
I am doing the delete/deploy/reploy operations in my dev/sit/qas environment , as I am new to logic App so am not sure what step I am missing and if some understanding issue i have.
Or is there any way to retain the previous url even if I delete and deploy the logicapp .
No, it's impossibble.
When you delete the logic app then deploy or deploy to new resource group, it will create a new logic app. So it will generate a new url.
After you create the endpoint, you can trigger the logic app by sending an HTTPS POST
request to the endpoint's full URL. Logic apps have built-in support for direct-access endpoints. Please refer to this article.