0
votes

Good morning. I am new to logic apps and I am trying to figure out how I can trigger the execution based on a GET URL with three parameters. All the examples I've found on Google show the URL being generated once the JSON and relative path is entered, but that's not happening for me. Perhaps it's because I am creating the logic app in VS.

Here's what my "When a HTTP request is received" step looks like in the logic app.

enter image description here

I also tried removing the JSON and just using the parameters to pass the values to the function, as shown below. I'm just not sure the best way to do this.

enter image description here

All I really need to do is get the three parameters into the logic app so I can perform a function call with the parameters. Any suggestions would be greatly appreciated!

1

1 Answers

0
votes

Why is my HTTP request URL not being generated for a Logic App?

You need to click save, and then the url will be automatically generated for the When a HTTP request is received trigger:

enter image description here

You can use this expression to accept values through GET parameters:

triggerOutputs()['queries']['parameter-name']

For example:

enter image description here enter image description here

Noteļ¼š

Queries need to pass parameters in the form of json.