Skip to main content
Relocates a value within your data: it places the value at a new path and then removes it from the old one. This is the tool for renaming a field or reshaping where data sits, for example moving product.name into item.itemName. It works the same way as Copy using a path, except the original is taken away once the move is done.

Fields

Sample data

FieldValue
Sourceproduct.name
Destinationitem.itemName
Input:
{
    "product": {
        "name": "Coffee mug",
        "sku": "MUG-01"
    }
}
Output:
{
    "product": {
        "sku": "MUG-01"
    },
    "item": {
        "itemName": "Coffee mug"
    }
}
The name has been moved out of product and into item.itemName, and the original product.name no longer exists.