Hi
@FLMike, Thanks for your response.
First, when I call the flow in the App I have the following code:
Set(varExcelLink, Blank());
Set(varExcelLink,
ExportdatacollectiontoExcel.Run(
JSON(
colFirewallInsp,
JSONFormat.IncludeBinaryData
)
)
);
Launch(varExcelLink.url)
So the flow receives the JSON data from the Power Apps and this data comes from colFirewallInsp (a Power Apps collection that holds firewall inspection records)
Then in the Compose action of my flow I have
json(triggerBody()['text']) ---- So this will parse incoming JSON data from Power Apps.
What Happens in the Compose Action?
The input from Power Apps is a string representation of JSON (text format). Example: "{ \"ID\": 1, \"Inspector\": \"John Doe\", \"Result\": \"Pass\" }"
The expected Output after the compose action , The text is converted into a JSON object, For Example:
{
"ID": 1,
"Inspector": "John Doe",
"Result": "Pass"
}
So, without using a JSON Parse I should be able to see these stuff in the select action right?
Have a look at this
60seconds video clip, this is what I exactly I am trying to replicate in my app but it is not working.
Thanks