Skip to main content
Removes fields from your data. You point at the part you want to clean up with an accessor, and the transformer deletes the keys it finds there. You can optionally add one or more checks that each key name must pass before it is removed, so you can target only certain fields instead of all of them. Use this to strip out helper fields, internal notes, or anything the receiving system should not see.

Fields

Sample data

FieldValue
AccessorPattern accessor matching * (all top-level keys)
ConditionsIs one of: internal_notes, _debug
Input:
{
    "sku": "A1",
    "name": "Wool scarf",
    "internal_notes": "check stock",
    "_debug": true
}
Output:
{
    "sku": "A1",
    "name": "Wool scarf"
}
Only the keys whose names matched the check were removed; sku and name were left in place. With no conditions set, every key the accessor selects would be removed instead.