Skip to main content Skip to footer

Base64 Decode Documentation

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


Base64 Decode

Decode a base64 string

Settings

Name Requirements Purpose Default
URL safe Boolean URL safe decoding false
Source Property String with length 1 to 64 The property that contains the string to do the decode operation on data
Target Property String with length 1 to 64 The property that will contain the result of the decode operation data

Example

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

Input

{
    'data': {
        'value': 'Q3Jvc3Nlcg=='
    }
}

Output

Example:

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