I have a function app with:
- a few functions triggered by a Timer Trigger
- and some triggered by the HTTP Trigger.
I have also an Azure API Management service set up for the function app, where the HTTP Triggered functions have their endpoints defined.
I am trying to trigger one of my timer triggered functions manually as per the guide here https://docs.microsoft.com/en-us/azure/azure-functions/functions-manually-run-non-http
I am however getting a 404 result in Postman, despite the seemingly correct URL and x-functions-key.
The key:
The request:
I also noticed that:
- if I don't include the
x-functions-keyheader, then I get401 Unauthorizedresult - and if I include an incorrect key, then I get
403 Forbidden.
Could it be related to the API management service being set up for the function app?
How can I troubleshoot this further?





