ARRAY

Returns an Array with each of the arguments as a member.

Syntax 

ARRAY(element1, element2, ...)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "three"
4
}
5
}

Formula

ARRAY("zero", TRUE, 2, my_action.message)

Output

1
[
2
"zero",
3
true,
4
2,
5
"three"
6
]

Sample Actions 

Event transform
My Action
Event transform
ARRAY

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?