Skip to main content Skip to footer

Base64 Encode Documentation

Version: 1.0.0 
Retrieved: 2025-10-09 15:15:45


Base64 Encode

Encode object to base64.

Object can be represented by string/byte[]

Settings

Name Requirements Purpose Default
URL safe Boolean URL safe encoding false
Source Property Length 1 to 64 The property that contains the Object to do the encode operation on data
Target Property Length 1 to 64 The property that will contain the result of the encode operation data

Example

Name Value
Source Property data.value
Target Property data.encoded

Input

{
    'data': {
        'value': 'Crosser'
    }
}

Output

Example:

{
    'data': {
            'value': 'Crosser',
            'encoded': 'Q3Jvc3Nlcg==',
        },
    'crosser': {
        'success':true
    }
}