I make a post request to this logic app
But my logic app never shows that it's been triggered
The next step after "When a HTTP request is received" is a GET method that I'm trying to see what it returns, and I figured I'd see that info in the trigger history or something.
You’ve defined it as Stateless
and Stateless
flows don’t log any results. Your flow needs to be Stateful
.
Stateless
workflows perform near on 10 times better (depending on the amount of work it’s doing) but you only want to use them if you’re not concerned about logging.
This links is great because it also leads to the official documentation.