CSV Agent

Convert between CSV files and structured data.

What it does

  • Reads CSV content into structured data or produces CSV from objects and arrays.

Common uses

  • Import partner CSV feeds into your workflows.
  • Generate CSV exports for reporting or file deliveries.
  • Inspect headers before mapping columns.

Key actions from the spec

  • Parse CSV with configurable delimiter, encoding, quote or escape characters, and header handling.
  • Return just the header row for quick inspection.
  • Convert arrays or objects back to CSV with an optional header row.

Setup notes

  • Make sure the encoding and delimiters match the source file to avoid misaligned columns.
  • Provide data as raw text, base64 string, or file object as indicated in the action input.