Publish REST API

0
How can i extract information coming in Body parameter in my published REST API?
asked
2 answers
1

You can add an input parameter of type System.HttpRequest, and you will find the body parameter in HttpRequest/Content.

answered
0

Hi Shivan, 

You can check the ‘Content’ attribute of the incoming HttpRequest. Or you can use an import mapping of the data that is coming in, and check the data in there. You can also do these two steps combined: use an import mapping in your microflow and map the content of HttpRequest/Content.

Let me know if this helps!

answered