Json Query
Use the Json Query action step to parse Json objects and read individual values or elements from the object. The result remains available for the rest of the process run as a source variable.
Combine this action step with REST Call to further refine the resulting JSON output.
Inbound Variables
-
Json Object
The Json object from which to extract the value using the JsonPath expression. You can select the result of a REST Call action step to serve as an object.
-
JsonPath Expression
The JsonPath expression to specify the value to extract from the object. For example,
$.ID
, to extract the value of elementID
as a result.
Outbound Variables
-
IsSucceeded (boolean)
Shows if the action step executed successfully or not.
-
FirstItem (array)
Outputs the first element of the array as a string.
-
ArrayCount
Indicates the number of elements of the returned array.
Wizard
Use the Wizard to select the source JSON Object, usually an Inbound Variable containing the result of a REST Call, and to specify the JsonPath expression to extract values from the object. An empty result is a valid result and the process continues without considering it as an error.
Use the JsonPath expression Builder to simplify the process of creating the JsonPath expression.
For more information about JSONPath, see XPath for JSON.