Hello! I am wondering if I can parse only certain values from my response data with a postman call. Here is an example.
I query a site and I get the below data:
{
id: <id>,
name: <name>,
version: <version>,
type: <type>
...
}
I only want to return the name and version. I can achieve this by grepping to jq and grabbing what I need via CLI. Is it possible to do this in postman? Thanks!!