Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to see Azure Functions from Logic Apps

I have created several Azure Functions, with custom routes, which from what I understand from the docs https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-functions#prerequisites, they will not appear in the list of Azure Functions for Logic Apps, which they don’t.

enter image description here

Just to test, I included an Azure Function with no custom route, and it is visible to Logic Apps.

enter image description here

I attempted to follow the instructions at https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-azure-functions#function-swagger (CORS) and https://learn.microsoft.com/en-us/azure/azure-functions/functions-openapi-definition (Setup API Management), and still, do not see my Azure Functions from within Logic Apps.

I am sure I am missing something, any assistance would be much appreciated.

like image 671
mattruma Avatar asked Oct 23 '25 22:10

mattruma


1 Answers

I figured out the issue.

You can only see Azure Functions that are Http Triggers that DO NOT have a route defined in the HttpTrigger attribute.

See the docs

like image 188
mattruma Avatar answered Oct 26 '25 19:10

mattruma