This is the output of my Power Automate response:
{
"statusCode": "200",
"schema": {
"type": "object",
"properties": {
"body": {
"type": "array",
"items": {
"type": "object",
"properties": {
"REQUESTID": {
"type": "string"
},
"DATEIN": {
"type": "string"
},
"REQ_TYPE": {
"type": "string"
},
"STATUS": {
"type": "string"
}
}
}
}
}
},
"body": [
{
"REQUESTID": "R_3aV0qW36bziUV3o",
"DATEIN": "2024-05-10T10:21:19Z",
"REQ_TYPE": "Data Summary",
"STATUS": null
},
{
"REQUESTID": "R_5EuzEhTorOIFrOR",
"DATEIN": "2024-05-14T09:55:31Z",
"REQ_TYPE": "Student Contact list",
"STATUS": null
}
]
}

I am trying to get that into Power Apps as a Collection.
I've used
ClearCollect(colDataReq,'PowerAppV2->Compose'.Run())
I've also tried putting in the ForAll(Table(ParseJSON('PowerAppV2->Compose'.Run().result).body)
Nothing I've tried gets the data from Power Automate into the Power Apps collection.
Any ideas for getting the data into Power Apps?