0
votes

I want to call an Azure logic app from Azure python based HTTP trigger function. Here is the end line (returning statement) of my python function which is returning expected value:

        return func.HttpResponse(successres)
    else:
        return func.HttpResponse(failedsres)

Now I want to call a HTTP trigger based logic app with passing 'successres' as JSON body.

Any help will be great.

1

1 Answers

1
votes