Append To Array
Append an element to an array.
Append To JSON List
Append an object to a list within a JSON object. The object will be added even if it already exists within the list.
Append To List (Deprecated)
This utility has been deprecated and will no longer be available in new workflows. You can use Append To Array instead.
Append an item to the end of a list. If the variable does not exist, the action will create a new list automatically.
Compare Arrays
Compare two arrays and determine if they are equal.
Concat Arrays
Combine two arrays into a single array containing all elements from both.
Extract a specific field from each item in an array and get the values as a new array.
Extend List
The Extend List utility action allows you to append an item to the end of your list or append a second list onto the end of your original list.
You can choose the list you want to append to by clicking on the dynamic dropdown menu and selecting your preferred list.
The Extend List utility action enables you to:
- Append a variable to the end of an original list
- Append a second list to the end of an original list
- Append both a variable and a second list to the end of the original list
Filter Array
Filter array elements using a Filter Function.
Get Array Length
Get the number of elements in a specified array.
Get Item From Array
Get a single item from an array at the specified index position.
Get Random Item From Array
Get a random item from a specified array.
Remove Duplicates From List
Removes duplicate elements from a list.
Remove From JSON List
Remove an object from a list within a JSON object. All instances of the object will be removed from the list.
Reverse List
Reverses the order of elements in a list.
For example: The list [8,12,2,6] will result in the output list: [6,2,12,8].
Slice Array
Slice elements from an array between Start Index and End Index.
The new array will contain elements from the source array beginning at Start Index (inclusive) up to but not including End Index (exclusive).
Sort Array
Sort array elements of the same type in ascending or descending order.
Split Array
Split a single array into multiple smaller arrays (chunks) of a specified size.