Base64 Decode transform action

Use case

An API has returned a value that is base64 encoded and you would like to decode it.

Overview

Decode a base64 encoded string.

Parameters

Parameter
Description
Required

String

String to decode.

URL Safe

Whether the base64-encoded has been encoded in URL-safe format.

As Bytes

Whether to return the raw bytes, instead of decoding the bytes as a UTF-8 string.

Usage

Example 1: Decoding a String

Inputs: **String**: VGhpcyBAaXMgbXkgdGVzdCBzdHJpbmcteWVlZWVoYXc= **URL Safe**: false **As Bytes**: false

Results output

Result of Example 1:

This @is my test string-yeeeehaw

Last updated

Was this helpful?