Not sure what's wrong with my data here. This is the output from a Response Action (Raw). Looks good, right?:
{
"statusCode": "200",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Filename": {
"type": "string"
},
"WONum": {
"type": "string"
},
"FileExists": {
"type": "integer"
}
},
"required": [
"Filename",
"WONum",
"FileExists"
]
}
},
"body": [
{
"Filename": "WO 5595-1 97201-97205.pdf",
"WONum": "5595-1",
"FileExists": 0
},
{
"Filename": "WO 5595-1 97201-97205.pdf",
"WONum": "5595-1",
"FileExists": 1
}
]
}
This is my powerapps call:
ClearCollect(ChkExistResult,AddNewWorkorder_Chk_Exist2.Run(JSON(UploadData_New,JSONFormat.IndentFour),User().FullName));
This is what I get back in PA:

Of course, I expect 'ChkExistResult.WONum' etc.
Putting ChkExistResult in a Gallery gives me one field, chkexistresult - and there is nothing in it.
See a problem? I've done this in several flows. This is broke.