Lookup JSON
Use this step to locate a part of a JSON value and store it in a variable.
Properties
- Lookup In
-
The input JSON value.
- Path
-
A JSON path which is a text or a JSON text value. Paths cannot contain expressions.
Example:
If you have a JSON value, such as [[{"a":[1], "b": {"c": true}}], null], specify the paths and get results.
Path
Returned result
""
[[{"a":[1], "b": {"c": true}}], null]
"[0]"
[{"a":[1], "b": {"c": true}}]
"[1]"
null
"[0][0].a"
[1]
"[0][0].a[0]"
1
"[0][0].b.c"
true
- Store Result In
-
Specify a variable of JSON type to store the result of the lookup.