Skip to main content
Deletes values from your data by naming where they sit. You list one or more paths, and everything at those paths is removed. This is the straightforward way to strip out fields you do not want to pass on, such as an internal note or a temporary helper value. Unlike removing by condition, this always removes whatever a path points at, without testing the value first.

Fields

Sample data

FieldValue
Keyinternal_note
Keysupplier_cost
Input:
{
    "sku": "A-100",
    "name": "Wool scarf",
    "internal_note": "do not ship",
    "supplier_cost": 4.5
}
Output:
{
    "sku": "A-100",
    "name": "Wool scarf"
}