Product documentation and training for Shipcode.
Basic Operator Nodes: Data Manipulation
These Nodes transform and modify data structures within your Flow.

These Nodes transform and modify data structures within your Flow.

Delete Path

The Delete Path Node removes a specific property from an object using dot-notation path syntax. This Node is useful for cleaning data before passing it to subsequent Nodes or removing sensitive information before sending data to external services.

To configure Delete Path, select the Node on the Canvas and then open the Settings cog in the Right Sidebar.

  • Path: Specify the property path to remove using dot notation (e.g., user.address.zip or data.sensitiveField). The path follows the same syntax as FQL property access.


Common Use Cases:

  • Stripping sensitive fields before logging or sending data to analytics
  • Cleaning API payloads by removing unnecessary nested properties
  • Removing temporary properties added during Flow processing


💡💡💡 Tip 💡💡💡


Delete Path operates on object properties, not array elements. To remove items from arrays, use FQL filtering operations in conjunction with Update Props or Aggregate.

Did this answer your question?