GET

Get the value in object at the specified path.

Syntax 

GET(object, path)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"ab": "c"
4
}
5
}

Formula

GET(my_action, "ab")

Output

"c"

Example 2

Input

1
{
2
"my_action": {
3
"a/b": "c"
4
}
5
}

Formula

GET(my_action, "[\"a/b\"]")

Output

"c"

Sample Actions 

Event transform
My Action
Event transform
GET
Event transform
GET

Select an action to inspect.

You can also click "Copy actions" and paste them in your Tines story to see how they work.

Was this helpful?