Base 64 Decode
Table of Contents
Description
The zoho.encryption.base64Decode task is used to decode text that is encoded in base 64 format
Syntax
<response> = zoho.encryption.base64Decode(<encoded_text>);
where,
| Params | Data type | Description | 
<response>  | TEXT  | Specifies the response that represents the decoded text  | 
<encoded_text>  | TEXT  | Specifies the base 64 encoded text that needs to be decoded  | 
Example
The following script decodes the base 64 encoded text - am9obkB6eWxrZXIuY29t and returns the original text - john@zylker.com.
response = zoho.encryption.base64Decode("am9obkB6eWxrZXIuY29t");
where:
responseThe TEXT response that represents the base 64 encoded text.
"am9obkB6eWxrZXIuY29t"The TEXT that represents the base 64 encoded text that needs to be decoded