I'm trying to parse JSON content with the following code:
Invoke-WebRequest -UseBasicParsing -Uri http://localhost/api/foo).Content | ConvertFrom-Json | Select someId
And the output I've like:
someId
---------
1234
5678
How I can skip the header in the above output, so I've got only values?