Remove Properties

Type: removeProperties

This handler lets you remove properties onto the items that are part of your workflow's payload.

The config for this handler is as follows:

{
    "properties": [{
        "name": "<property name>"
    }]
}

Here is an example where we remove two properties - property1 and property2.

{
    "properties": [{
        "name": "property1"
    }, {
        "name": "property2"
    }]
}