CONCAT

Concatenates (joins together) two arrays.

Syntax 

CONCAT(array1, array2)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": [
4
"one",
5
"two",
6
"three"
7
]
8
}
9
}

Formula

CONCAT(my_action.message, ARRAY("four", "five"))

Output

1
[
2
"one",
3
"two",
4
"three",
5
"four",
6
"five"
7
]

Sample Actions 

Event Transform
CONCAT
Event Transform
My Action

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?