I was actually looking for a way to pass the entire collection that was there in the PowerApps to the MS Follow for subsequent action to be taken based on data at each row of the collection.
There is no direct way to achieve it at this point of time.
Doing a forall & concatenate seemed slow and complicated respectively.
I found an easy way to achieve the above.
Here's what I did :
- Converted the collection to the JSON
- Set(JSONName, JSON(CollectionName ))
- The collection was now formatted to JSON and got stored in the variable JSONName
- Created a flow which parses the JSON which is gets passed from the PowerApps

- From PowerApps you can pass the JSON Formatted Collection (JSONName)
Flowname.Run(JSONName)
Now you can manipulate collection data at the flow end like anyother JSON data.
Note/Tip & Trick :
For the schema of the JSON that needs to be provided at the flow end in the Parse JSON step.
You can set the text value of label as the Json Variable(JSONName). Copy paste the content of the label in the Parse JSON flow step.