Enables scripted content fragments to use Emoticons

Methods

Create

Create a new emoticon

Usage

#set($emoticonResponse = $core_v2_emoticon.Create($code, $url, $description))

Parameters

NameTypeDescriptionRequiredDefaultOptions
codestringCode for the emoticonRequired
urlstringURL of emoticon imageRequired
descriptionstringDescription of the emoticonRequired

Return Type

Emoticon

Delete

Deletes an emoticon

Usage

#set($additionalInfoResponse = $core_v2_emoticon.Delete($id))

Parameters

NameTypeDescriptionRequiredDefaultOptions
idintId of the emoticonRequired

Return Type

AdditionalInfo

Get

Gets an emoticon

Usage

#set($emoticonResponse = $core_v2_emoticon.Get($id))

Parameters

NameTypeDescriptionRequiredDefaultOptions
idintId of the emoticonRequired

Return Type

Emoticon

List

Lists all emoticons

Usage

#set($apiListResponse = $core_v2_emoticon.List())

Return Type

ApiList<Emoticon>

Update

Update an existing emoticon

Usage

#set($emoticonResponse = $core_v2_emoticon.Update($id, "%{Code = $codeArg, Description = $descriptionArg, Url = $urlArg}"))

Parameters

NameTypeDescriptionRequiredDefaultOptions
idintId of the emoticonRequired
CodestringCode for the emoticonOptional
DescriptionstringDescription of the emoticonOptional
UrlstringURL of emoticon imageOptional

Return Type

Emoticon