Integrations
Configure Task Output
JSONpath in Python Tasks
2 min
this topic contains jsonpath examples examples see the following json document it shows how jsonpath expressions can be added to it you can form expressions to suit your requirement using the supported jsonpath syntax and filters expression result $ entire object $ json response entire json response object $ json response entities\[0] first entity $ \['json response']\['entities']\[0] first entity $ json response entities\[0,2] first and third entity $ json response entities\[ 2] first two entities $ json response entities\[ 2 ] last two entities $ json response entities\[ ] name the name of all the entities $ id all the ids $ json response entities\[?(@ count > 6)] all entities with count greater than 6 $ entities\[?(@ type == "internetdomainname")] all entities with type internetdomainname