I am making a REST call in PowerShell for transaction snapshots using "&need-props=true&output=json" in the url. I get the response in the response object below:
# REST CALL
$response = Invoke-RestMethod -uri $url -Header $headers -Method Get
#VIEW...
As a follow up, I found that when requesting a single snapshot, the properties fields are properly formatted as expected. It is only when requesting more than one, the formatting is different. The same goes for metrics as well as snapshots...
Her...