| Combine Collection (Deprecated) | This version of the action is being deprecated. Please replace action with Create Object. |
| Field Value Mapping | Maps the values from two different collections and returns a key/value list where the 'key' is the value of the Key Mappings input and the 'value' is the value of the Value Mappings input |
| Process In Order | Ensures that payloads are processed in order across executions according to an ordering specified by a payload attribute. Returns the largest possible set of ordered payloads on the Process branch, and otherwise follows the Skip branch and returns the current item. |
| Take First | Take first number of elements from a list |
| Take Last | Take last number of elements from a list |
| First | Get first element from a list |
| Last | Get last element from a list |
| Count | Count the number of occurrences of element in list |
| Chunks | Chunk the list into lists of the specified number of elements |
| Length | Count the number of elements in list |
| De-duplicate | De-duplicate the elements of the list |
| Append | Append element to the end of the list |
| Remove | Remove all occurrences of an element from a list |
| Concatenate | Concatenate two lists together into a single list |
| Object to Key Value Pair List | Convert an Object to a Key Value List |
| Create List | Create a new list with the given inputs |
| Flatten | Flatten an array of arrays into a single array |
| Select Item From List by Index | Select an item by index from a list of items, supports nested lists |
| Create Object | Creates a new object from provided key/value pairs |
| Key Value Pair List to Object | Convert a Key Value list to an Object |
| Add Key/Value to Object | Add a value to an object with the given key |
| Add Multiple Key/Value to Object | Add multiple key/value pairs to an object |
| Aggregate | Apply aggregate function to list |
| Map | Transform a list and its elements |
| Filter | Filter elements of a list |
| Sort | Sort elements using a JavaScript comparison function |
| Validate JSON Schema | Validate a JSON input against a given schema, returning errors if not JSON input is not valid. |
| Validate XML Schema | Validate an XML input against a given XSD schema, returning errors if XML is not valid. |