Skip to main content
Adds new values to your data or updates existing ones. You name a path and give it a value: if the path already exists its value is replaced, and if it does not it is created. This is one of the most-used transformers, handy for setting a fixed value like a channel name, or for building a new field out of existing data with placeholders such as &{first_name} &{last_name}. You can set several values in one step, and they are applied in order, so a later value can build on one you just set.

Fields

Sample data

FieldValue
Keyfull_name, value &{first_name} &{last_name}
Keystatus, value active
Input:
{
    "first_name": "Anna",
    "last_name": "de Vries",
    "country": "NL"
}
Output:
{
    "first_name": "Anna",
    "last_name": "de Vries",
    "country": "NL",
    "full_name": "Anna de Vries",
    "status": "active"
}