0

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 Answer 1

1

Create a callable endpoint for your App and call it.

Some more details here.

Sign up to request clarification or add additional context in comments.

2 Comments

Thanks @Kashyap for the response. However my question is that only "How to call it". I know how to create a callable endpoint but not sure how to call it as function ends with a return statement.
@vivekmishra That part would be a simple http call with appropriate headers/auth etc. See this question for some examples and RTM (steps 7 & 8 in "details here" link above) for authentication etc.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.