General functionsFunctions you can use in Boost.space Integrator - create, update, delete, get, search. let you fine-tune your mappingMapping links the modules in your scenario. When you map an item, you connected the data retrieved by one module to another module to perform the desired action. For example, you can map the email address and subject lines from the Email > Watch emails module to Google Sheets > Add a row and create a spreadsheet of email addresses... in a scenarioA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive.. For example, you can select or leave out items in an arrayWithin a bundle, data items of the same type are sometimes in an array. You can find an array by looking at the details of a bundle. Depending on the details of your scenario, you can map other modules to a specific item in an array or use iterators and aggregators to manipulate your data into other formats. When mapping,... or apply conditional criteria to your mapping. Below is a list of general functions you can use in your scenariosA specific connection between applications in which data can be transferred. Two types of scenarios: active/inactive..
Returns the value path of an object or array. To access nested objects, use dot notation. The first item in an array is index 1.
get(array;1+1)
get(array;5.raw_name)
get(object;raw_name)
get(object;raw_name.sub_raw_name)
-
(expression; value1; value2)
Returns value 1 if the expression is evaluated to be true. Otherwise, it returns value 2.
if(1=1;A;B) = A
if(1=2;A;B) = B
Returns value 1 if this value is not empty. Otherwise, it returns value 2.
ifempty(A;B) = A
ifempty(unknown;B) = B
ifempty("";B) = B
Evaluates one value (called the expression) against a list of values, and returns the result corresponding to the first matching value.
switch(B;A;1;B;2;C;3) = 2
switch(C;A;1;B;2;C;3) = 3
switch(X;A;1;B;2;C;3;4) = 4
Removes elements with the given keys from a collection. Returns a collection with the remaining elements. Useful when you want to pass a collection to an API, which expects an exact number of elements in the collection. Using this functionFunctions you can use in Boost.space Integrator - create, update, delete, get, search., you can make sure your collection meets the requirements of the API.
Picks elements with the given keys from a collection. Returns a collection that contains only the picked elements. Useful when you want to pass a collection to an API, which expects an exact number of elements in the collection. Using this function, you can make sure your collection meets the requirements of the API.