1. Docs
  2. Formulas
  3. Functions

VALUES

Returns all the values of an object.

Categories: Objects

Syntax

VALUES(object)

Examples

Example 1

Input

1
{
2
"my_object": {
3
"color": "blue",
4
"size": "large"
5
}
6
}

Formula

VALUES(my_object)

Output

1
[
2
"blue",
3
"large"
4
]

Sample actions

Event Transform
My Action
Event Transform
VALUES

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?