AIC Commands

<< Click to Display Table of Contents >>

Navigation:  3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command >

AIC Commands

AIC_EncodeBase64

Previous Top Next


Description

Short Name: e64

Encode to Base64

Syntax

AIC_EncodeBase64(Data)

Parameters

Parameter

Type

Required

Description

Data

String

Yes

String data to encode to Base64

Return Value

Type

Description

String

Returns the Base64 encoded string

Remarks

·Used for encoding data for API transmissions

·Commonly used for image data encoding

·Output is URL-safe Base64

Example

' Encode string to Base64Dim data As Stringdata = "Hello World"encoded = AIC_EncodeBase64(data)

Encodes the input string to Base64 format for API communication.

See Also

·AIC_GetContent

·AIC_---Artificial-Intelligenc2