Skip to content

largeobject

YYBartT edited this page Jan 18, 2026 · 1 revision

LargeObject

Functions

This module offers a collection of functions designed to address specific tasks and provide utilities for various purposes. Explore the available functions to make the most of the functionalities provided by this module.



Back To Top

elements_large_object_mp_create_large_object

Elements Operation: createLargeObject

This function creates a LargeObject with content.

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_mp_create_large_object(_body=undefined, _callback=undefined)
Argument Type Description
_body Struct The body to be included in the HTTP request.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest



Back To Top

elements_large_object_mp_create_large_object_1

Elements Operation: createLargeObject_1

This function creates a LargeObject.


Syntax:

elements_large_object_mp_create_large_object_1(_body=undefined, _callback=undefined)
Argument Type Description
_body ElementsCreateLargeObjectRequest The body to be included in the HTTP request.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A




Back To Top

elements_large_object_mp_create_large_object_from_url

Elements Operation: createLargeObjectFromUrl

This function creates a LargeObject from the provided URL.


Syntax:

elements_large_object_mp_create_large_object_from_url(_body=undefined, _callback=undefined)
Argument Type Description
_body ElementsCreateLargeObjectFromUrlRequest The body to be included in the HTTP request.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A




Back To Top

elements_large_object_get_large_object

Elements Operation: getLargeObject

This function gets a LargeObject.

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_get_large_object(_large_object_id, _callback=undefined)
Argument Type Description
_large_object_id String The ID of the LargeObject.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest



Back To Top

elements_large_object_update_large_object

Elements Operation: updateLargeObject

This function updates a LargeObject.

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_update_large_object(_large_object_id, _body=undefined, _callback=undefined)
Argument Type Description
_large_object_id String The ID of the LargeObject.
_body ElementsUpdateLargeObjectRequest The body to be included in the HTTP request.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest



Back To Top

elements_large_object_delete_large_object

Elements Operation: deleteLargeObject

This function deletes a LargeObject.

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_delete_large_object(_large_object_id, _callback=undefined)
Argument Type Description
_large_object_id String The ID of the LargeObject.
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data Undefined
_request ElementsRequest



Back To Top

elements_large_object_update_large_object_contents

Elements Operation: updateLargeObjectContents

This function updates a LargeObject's contents.

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_update_large_object_contents(_large_object_id, _body=undefined, _content_type=undefined, _callback=undefined)
Argument Type Description
_large_object_id String The ID of the LargeObject.
_body Struct The body to be included in the HTTP request.
_content_type String The type of the body (this will be used by the mapper to convert the body argument to the correct type).
_callback Function The function - with signature (status, data, request) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest



Back To Top

elements_large_object_create_large_object_1

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_create_large_object_1(_body=undefined, _callback=undefined)
Argument Type Description
_body ElementsCreateLargeObjectRequest The body to be included in the http request.
_callback Function The function - with signature (status: Real, data: ${Struct.ElementsLargeObject}, request: ${Struct.ElementsRequest}) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest



Back To Top

elements_large_object_create_large_object_from_url

This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.


Syntax:

elements_large_object_create_large_object_from_url(_body=undefined, _callback=undefined)
Argument Type Description
_body ElementsCreateLargeObjectFromUrlRequest The body to be included in the http request.
_callback Function The function - with signature (status: Real, data: ${Struct.ElementsLargeObject}, request: ${Struct.ElementsRequest}) - that will be executed upon request completion.



Returns:

N/A


Triggers:

Callback Function

Key Type Description
_status Real
_data ElementsLargeObject
_request ElementsRequest


Clone this wiki locally