You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 17 Next »

This server class provides methods that allow operating with attachments.

SimpleAttachment()


Instantiates a new empty SimpleAttachment object.


SimpleAttachment
let attach = new SimpleAttachment();


base64Decode(data)

This method returns an ASCII string decoded from the base64 string specified.

NameTypeMandatoryDefault Value
dataStringYN


Return:

TypeDescription
StringThe decoded string.

Example:

base64Decode

base64Encode(data)

This method returns a Base64 string from the string specified.

NameTypeMandatoryDefault Value
dataStringYN


Return:

TypeDescription
StringThe encoded Base64 string.

Example:

base64Encode

copy(sourceTable, sourceID, targetTable, targetID)

This method copies attachments from the source record to the target record.

Parameter(s):

NameTypeMandatoryDefault Value
sourceTableStringYN
sourceIDStringYN
targetTableStringYN
targetIDStringYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

copy
let attach = new SimpleAttachment();
attach.copy('user', '155964310500000059', 'sys_script', '155964310500000051');

createAttachmentByUrl(url, SimpleRecordId, fileName)


Parameter(s):

NameTypeMandatoryDefault Value
urlStringYN
SimpleRecordIdStringYN
fileNameStringYN


Return:

TypeDescription
String

Example:


createAttachmentByUrl

deleteAttachment(attachmentID)

This method deletes the specified attachment.


Parameter(s):

NameTypeMandatoryDefault Value
attachmentIDStringYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

deleteAttachment
let attach = new SimpleAttachment();
attach.deleteAttachment('157052637119478714');

getCloudStorageUrl(attachmentId)

This method allows to get the URL of the specified attachment at the cloud storage.


NameTypeMandatoryDefault Value
attachmentIdstringYN


Return:

TypeDescription
StringThis method returns the attachment URL in the cloud storage.

Example:

getCloudStorageUrl

getContent(sysAttachment)

This method gets attachment content as a string.

NameTypeMandatoryDefault Value
sysAttachmentSimpleRecordYN

Return:

TypeDescription
StringThe attachment content as a string.

Example)

getContent
let attach = new SimpleAttachment();
let content = attach.getContent('157052637119478714');

rename(attachmentId, fileName)

This method renames the specified attachment.


Parameter(s):

NameTypeMandatoryDefault Value
attachmentIdStringYN
fileNameStringYN


Return:

TypeDescription
VoidThis method does not return a value.


Example:

rename
let attach = new SimpleAttachment();
attach.rename('157052637119478714', 'new_name_1.png');

write(record, fileName, contentType, content)

This method inserts the attachment to the record specified.

NameTypeMandatoryDefault Value
recordSimpleRecordYN
filenameStringYN
contentTypeStringYN
contentStringYN

Return

TypeDescription
StringThe attachment's sys ID.

Example:

write
let attach = new SimpleAttachment();
let record = attach.write('157052637119478714', 'readme.md', 'text/markdown', '# h1 title');

writeBase64(documentId, fileName, base64, contentType)

This method inserts the attachment to the record specified using Base64 encoding.

NameTypeMandatoryDefault Value
documentIDStringYN
fileNameStringYN
base64StringYN
contentTypeStringYN

Return

TypeDescription
String or NULLThe attachment's sys ID; in case of error; returns NULL.

Example:

writeBase64

  • No labels