I am calling an azure function from an Logic app using azure HTTP Webhook. this is the parameters used for the call :
the azure function is lunched and finished working properly and it returns the results with 201 as code status. this is the output of the azure function:
Normally the webhook have to finish his work after receiving the 200 code status from the azure function and go to the next step of the azure logic app, but this is not the case. In fact the logic app is stacked in the azure HTTP Webhook I don't know if this is due to the status code returned by the azure function or due to an other thing.
Any idea about the cause of this problem and how to solve it ?