0
votes

I have created simple Azure Function and I'm trying to call it in a Logic App. But Logic App gives error 503 Service Unavaible.

503 error

Logic app design:

logic app design

I'm totally new to this, what can be the issue?

1
is your function protected (function level) or anonymous? what type of trigger (http, queue, blob storage)? can you run the function alone ? - Anass Kartit
@AnassKartit public static async Task<object> Run(HttpRequestMessage req, TraceWriter log) - Shreyas Pednekar
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 Function status

then click the specific function to get the URL that should be called from Logic App enter image description here