Skip to main content
Decodes a base64 encoded string back to its original value. Use this when a source system delivers a value in base64, for example a token or an identifier that was encoded for safe transport, and you need the readable original text back before you can use it. This is the exact reverse of the String: Base64 encode step. If the incoming value is not valid base64, the result may be unreadable rather than an error.

Fields

This step has no settings. It takes the value it is pointed at and returns the decoded result.

Sample data

FieldValue
(none)This step has no settings
Input:
{ "code": "V29vbCBzY2FyZg==" }
Output:
{ "code": "Wool scarf" }