cannectors

Filters

Modules that transform, branch, enrich, or drop records.

Filters run in declared order between the input and the output. Each filter sees one record at a time and can mutate it, drop it, branch on it, or enrich it from an external system.

Picking the right filter

You want to …Reach for
Rename or normalize a fieldmapping
Set a fixed value on every recordset
Get rid of a fieldremove
Drop the record entirelydrop (usually under a condition)
Route records by a boolean expressioncondition
Walk an array field on each recordloop
Look something up from an HTTP APIhttp_call
Look something up from a SOAP APIsoap_call
Look something up from a SQL databasesql_call
Run arbitrary JavaScriptscript

See Input → Filters → Output for how filter order affects record flow.