I'm using a LogicApp triggered by an HTTP call. The call posts a JSON message which is a single row array. I simply want to extract the single JSON object out of the array so that I can parse it but have spent several hours googling and trying various options to no avail. Here's an example of the array:
[{ "id": "866ef906-5bd8-44d8-af34-0c6906d2dfd7", "subject": "Engagement-866ef906-5bd8-44d8-af34-0c6906d2dfd7", "data": { "$meta": { "traceparent": "00-dccfde4923181d4196f870385d99cb84-52b8333f100b844c-00" }, "timestamp": "2021-10-19T17:01:06.334Z", "correlationId": "866ef906-5bd8-44d8-af34-0c6906d2dfd7", "fileName": "show.xlsx" }, "eventType": "File.Uploaded", "eventTime": "2021-10-19T17:01:07.111Z", "metadataVersion": "1", "dataVersion": "1" }]
Examples of what hasn't worked: Parse JSON on the array, error: InvalidTemplate when specifiying an array as the schema For each directly against the http output, error: No dependent actions succeeded.
Any suggestions would be gratefully received.



