|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command > AIC Commands |
Short Name: e64
Encode to Base64
AIC_EncodeBase64(Data)
Parameter |
Type |
Required |
Description |
Data |
String |
Yes |
String data to encode to Base64 |
Type |
Description |
String |
Returns the Base64 encoded string |
·Used for encoding data for API transmissions
·Commonly used for image data encoding
·Output is URL-safe Base64
' Encode string to Base64Dim data As Stringdata = "Hello World"encoded = AIC_EncodeBase64(data)
Encodes the input string to Base64 format for API communication.