APPEND

Joins two pieces of text together.

Syntax 

APPEND(text1, text2)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "/my/fancy/url"
4
}
5
}

Formula

APPEND(my_action.message, ".html")

Output

"/my/fancy/url.html"

Example 2

Alternatively, you can used the concatenation operator:

Input

1
{
2
"my_action": {
3
"message": "/my/fancy/url"
4
}
5
}

Formula

my_action.message & ".html"

Output

"/my/fancy/url.html"

Sample Actions 

Event Transform
APPEND
Event Transform
My Action
Event Transform
String Concatenation

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?