This function allows you to encode or decode a base64 or Crc32 string, CSV to JSON, CSV to XML, JSON to XML,
password verify, JSON Encode and many more things
inside your flows.
Base64 Decodeβ
This function allows you to decode a base64 string inside your flows.
Parameter | Usage | Mandatory |
---|
Base64 String | The string in base64 to decode. | No |
Response parametersβ
Parameter | Usage |
---|
string_decoded | The decoded string. |
error | This field will contain an error message if the decoding process fails. |
Base64 Encodeβ
This function allows you to encode a string in base64 inside your flows.
Parameter | Usage | Mandatory |
---|
String | The string to encode. | No |
Response parametersβ
Parameter | Usage |
---|
string_encoded | The encoded string. |
error | This field will contain an error message if the encoding process fails. |
Crc32 Encryptingβ
This function allows you to encode a string in Crc32 inside your flows.
Parameter | Usage | Mandatory |
---|
String to encrypt | Generates the cyclic redundancy checksum polynomial of 32-bit lengths of the string. This is usually used to validate the integrity of data being transmitted. | No |
Response parametersβ
Parameter | Usage |
---|
string_verification | The encrypted string. |
error | This field will contain an error message if the encryption fails. |
Crypt Encryptingβ
This function allows you to encrypt a string in a crypt string inside your flows.
Parameter | Usage | Mandatory |
---|
String to encrypt | The string to encrypt. | No |
Salt | A salt string to base the hashing on. | No |
Response parametersβ
Parameter | Usage |
---|
string_encrypted | The encrypted string. |
error | This field will contain an error message if the encryption fails. |
CSV to JSONβ
This function allows you to transform a CSV into JSON format inside your flows.
Parameter | Usage | Mandatory |
---|
CSV path | The path within your data record where the CSV data is located. This should be a base64 encoded string. Otherwise, include the path of your file manager, for instance: testfolder/test.csv. | No |
Output JSON name | The path within your file manager where the output file will be generated after successfully parsing your CSV. | No |
Header based | Whether the first line of the CSV contains the table columns name or not. | No |
Delimiter | The delimiter value. By default it is β,β. | No |
Quote | Value to skip delimiter inside quote. It can be any character. | No |
Response parametersβ
Parameter | Usage |
---|
name | The name of json file generated in the file manager. |
path | The path to the json file generated in the file manager. |
json | The converted json string. |
error | This field will contain an error message if the conversion fails. |
CSV to XMLβ
This function allows you to transform a CSV into XML format inside your flows.
Parameter | Usage | Mandatory |
---|
CSV path | The path within your data record where the CSV data is located. This should be a base64 encoded string. Otherwise, include the path of your file manager, for instance: testfolder/test.csv. | No |
Output XML name | The path within your file manager where the output file will be generated after successfully parsing your CSV. | No |
Header based | Whether the first line of the CSV contains the table columns name or not. | No |
Delimiter | The delimiter value. By default it is β,β. | No |
Quote | Value to skip delimiter inside quote. It can be any character. | No |
Response parametersβ
Parameter | Usage |
---|
name | The name of xml file generated in the file manager. |
path | The path to the xml file generated in the file manager. |
json | The converted xml string. |
error | This field will contain an error message if the conversion fails. |
Handle E-mail contentβ
This function allows you to save an HTML content in your data schema inside your flows.
Parameter | Usage | Mandatory |
---|
HTML Content | The HTML content to use. | No |
Response parametersβ
Parameter | Usage |
---|
output | The content output. |
error | This field will contain an error message if the content cannot be retrieved. |
Handle plain textβ
This function allows you to save a plain text in your data schema inside your flows.
Parameter | Usage | Mandatory |
---|
Data | The plain text to save. | No |
Response parametersβ
Parameter | Usage |
---|
output | The content output. |
error | This field will contain an error message if an error occurs. |
This function allows you to generate a hash value (message digest)
Parameter | Usage | Mandatory |
---|
Algorithm | | Yes |
Data | | Yes |
Raw output | | No |
Response parametersβ
Parameter | Usage |
---|
string_hashed | The content output. |
error | This field will contain an error message if an error occurs. |
Hash HMACβ
This function allows you to generate a keyed hash value using the HMAC method.
Parameter | Usage | Mandatory |
---|
algo | | Yes |
data | | Yes |
key | | Yes |
Response parametersβ
Parameter | Usage |
---|
string_hashed | The content output. |
error | This field will contain an error message if an error occurs. |
This function provides useful functions for managing HTML inside your flows.
Parameter | Usage | Mandatory |
---|
HTML code | The HTML that the function will be applied to. | No |
Method | The method that will be applied to the string. | No |
Method HTML entitiesβ
Parameter | Usage | Mandatory |
---|
Quote style | This defines what to do with βsingleβ and βdoubleβ quotes. | Yes |
Charset | This sets the character set used in conversion. | Yes |
Double encode | When double_encode is turned off existing html entities will not be encoded. The default is to convert everything. | Yes |
Method HTML entity decodeβ
Parameter | Usage | Mandatory |
---|
Quote style | This defines what to do with βsingleβ and βdoubleβ quotes. | Yes |
Charset | This sets the character set used in conversion. | Yes |
Method HTML special charactersβ
Parameter | Usage | Mandatory |
---|
Flags | A bitmask of one or more of the following flags, which specify how to handle quotes, invalid code unit sequences and the used document type. | Yes |
Encoding | Sets the encoding used when converting characters. | Yes |
Double encode | When double_encode is turned off existing html entities will not be encoded. The default is to convert everything. | Yes |
Method HTML special characters decodeβ
Parameter | Usage | Mandatory |
---|
Quote style | Sets what will be done with βsingleβ and βdoubleβ quotes. | Yes |
Method NL to BRβ
Parameter | Usage | Mandatory |
---|
Quote style | Whenever to use XHTML compatible line breaks or not. | Yes |
Response parametersβ
Parameter | Usage |
---|
output | The content output. |
error | This field will contain an error message if an error occurs. |
JSON Encodeβ
This function allows you to...
Parameter | Usage | Mandatory |
---|
String | | Yes |
Response parametersβ
Parameter | Usage |
---|
json_encoded | The content output. |
error | This field will contain an error message if an error occurs. |
JSON to XMLβ
This function allows you to...
Parameter | Usage | Mandatory |
---|
String | | Yes |
Response parametersβ
Parameter | Usage |
---|
text_converted | The content output. |
error | This field will contain an error message if an error occurs. |
MD5 Encryptingβ
This function allows you to...
Parameter | Usage | Mandatory |
---|
String to encrypt | | Yes |
Response parametersβ
Parameter | Usage |
---|
string_encrypted | The content output. |
error | This field will contain an error message if an error occurs. |