CONCAT

Concatenates (joins together) two or more 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
]

Example 2

Takes two or more arrays as arguments.

Formula

CONCAT(ARRAY(1, 2), ARRAY(3, 4), ARRAY(5, 6)

Output

1
[
2
1,
3
2,
4
3,
5
4,
6
5,
7
6
8
]

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?