Hi,
I am trying to get records of Audit History from Flow to Canvas App.
So I have created Flow, got the record in Json format and I am passing that Json data to PowerApps using Response to PowerApps.
I am able to call flow from PowerApps but not able to access collection data which came from PowerApps.

This is the json
[
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
},
{
"ChangedBy": "CFS Admin",
"ChangedField": "cf_quarter",
"ChangedOn": "25-05-2020 13:18",
"Event": "Create",
"NewValue": "Q3",
"OldValue": ""
}
]
I am collecting the response from Flow in PowerApp using this ClearCollect:
ClearCollect(
AuditHistoryRecord,
AuditHistory.Run(ThisItem.Objective)
);
This is collection which I am getting.

Any help is Appreciated.