skip to Main Content

I have created a function app which takes a URI parameter

enter image description here

then I have created a logic app, from the logic app I want to call the function app but not sure how to pass URI parameter here

enter image description here

I am not sure how to pass uri parameter from logic app while calling a function app

2

Answers


  1. My function expects name parameter as shown below-

    enter image description here

    • In order to pass this parameter in Call an Azure function action, you need to add Queries from Advanced parameters.

    enter image description here

    • Then pass the parameter name and value as shown below.

    enter image description here

    This will give you expected result.

    enter image description here
    enter image description here

    Login or Signup to reply.
  2. You can select Advanced parameters = Queries like this:

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search