See the supported connectors for Application Integration.

DECODE_BASE64_STRING function

DECODE_BASE64_STRING function

Function NameDescriptionUsageInput parameterReturn value
DECODE_BASE64_STRINGDecodes a base64 string to UTF-8 charset.DECODE_BASE64_STRING()N/AA decoded UTF-8 string.

Supported data type

The DECODE_BASE64_STRING function supports the following data type:

  • String

Example: Decode a base64 string

Sample data: $var1$ = "SGVsbG8gSW50ZWdyYXRpb24h"

Usage: $var1$.DECODE_BASE64_STRING()

Decode var1 from base64 format.

Output: Hello Integration!

Recommendation