You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 20, 2023. It is now read-only.
Sometimes we need to see only some specific properties in response.
It would be nice to have some textbox where we can put a JSONPath Syntax and the response panel show only the evaluation result.
Example:
{ "firstName": "John", "lastName" : "doe", "age" : 26, "address" : { "streetAddress": "naist street", "city" : "Nara", "postalCode" : "630-0192" }, "phoneNumbers": [ { "type" : "iPhone", "number": "0123-4567-8888" }, { "type" : "home", "number": "0123-4567-8910" } ] }JSONPath Syntax
$.phoneNumbers[*].numberEvaluation Results
'0' => "0123-4567-8888" '1' => "0123-4567-8910"Check it online in: JSONPath Online Evaluator