Convert list to object transform action
Transforms a list into an object with extracted key-value pairs.
Overview

This transform action allows you to convert a list of objects into a single object, creating each object's property using user-defined key-value pairs extracted from the list, and simplifying the handling of complicated list structures.

Parameters
List to Transform
The list of objects you want to transform into a single object. Each item in the list should be a object with key-value pairs.
Field to use as Key
The field name from the items in your list that you want to use as keys in your new object.
Field to use as Value
The field name from the items in your list that you want to use as values in your new object.
For nested field names, separate them by dots (e.g., details.age).
Usage
The Convert List to Object transform provides a powerful way to reshape your data to meet specific requirements. The ability to define keys and values, including the ability to access nested data, makes it versatile for a range of scenarios. Let's go through a couple of use-case examples to demonstrate how this transform can be applied to your data.
Example 1: Simple Key-Value Conversion
Let's assume we have this list of objects called mylist:
Action Parameters:
We want to create a new object where the keys are the name field and the values are the age field. We would use the following parameters:
Jinja2 Equivalent:
Example 2: Nested Key-Value Conversion
Now, let's consider a list of objects where some fields are nested:
Action Parameters:
In this case, the age field is nested under the details object. So, to create an object where the keys are the name field and the values are the age field nested under details, we would use the following parameters:
Jinja2 Equivalent:
Results output
In both of these examples, your new output object would look as follows:
This transform is especially useful when dealing with data structures like ConnectWise PSA Custom Fields or Communication Items.
Last updated
Was this helpful?

