Forum Discussion
Alan Marshall
May 09, 2018Steel Contributor
Do more with Flow Send an HTTP Request to SharePoint and Site Designs
I've been using Site Designs and Scripts to provision SharePoint sites with pre-set document libraries, lists and themes but there are still lots of provisioning things that are missing to create a c...
Περικλής Δράμπης
May 11, 2018Brass Contributor
Hello Alan,
After constructing such a request do you know how to get the output of the request as input to the next flow step?
Thanks
- Nabeel SalieJul 25, 2018Copper Contributor
For getting the output, I've used the following with a variable
body('Get_Item_Content_Type')['d']['ContentTypeId']
"Get_Item_Content_Type"
This is the name of the action "Send HTTP Request..."
- Περικλής ΔράμπηςMay 11, 2018Brass ContributorI added a request to retrieve items from a list. Then as a next step I added data operation "Parse JSON" where I provided a sample json response to create the schema and then I was able to add a "Apply to each" to do some business logic. Not sure if there was a better way.