URL_ENCODE

Converts any URL-unsafe characters in the given text into percent-encoded characters.

Syntax 

URL_ENCODE(text)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "alice@example.com"
4
}
5
}

Formula

URL_ENCODE(my_action.message)

Output

"alice%40example.com"

Example 2

Space characters are turned into + characters instead of being percent encoded:

Input

1
{
2
"my_action": {
3
"message": "hello world"
4
}
5
}

Formula

URL_ENCODE(my_action.message)

Output

"hello+world"

Sample Actions 

Event Transform
My Action
Event Transform
URL_ENCODE
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?