is your function protected (function level) or anonymous? what type of trigger (http, queue, blob storage)? can you run the function alone ?
- Anass Kartit
please test the function without logic app by running a test from the portal first
- Anass Kartit
@AnassKartit How to check if it's running without error or not in azure portal?
- Shreyas Pednekar
try to hit your function using postman, does it work? i doubt it
- Alex Gordon
1 Answers
1
votes
Check the status of Azure function if it is running from the portal
then click the specific function to get the URL that should be called from Logic App
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
public static async Task<object> Run(HttpRequestMessage req, TraceWriter log)- Shreyas Pednekar