Skip to main content
Version: Next

Json To Csv

Converts a JSON to CSV

Description

Converts a JSON object to CSV. Each JSON object will be represented on a single line in the CSV file.

Example

JSON:

[
{"firstname":"john", "lastname":"doe"},
{"firstname":"jane", "lastname":"doe"}
]

Resulting CSV:

firstname,lastname
john,doe
jane,doe

Inputs

  • Control Flow (Control Flow)
  • Source (Object): The JSON input
  • File Name (String): The CSV file name

Outputs

  • Control Flow (Control Flow)
  • Result (File): The CSV file
  • Error Flow (Error Flow): Error Flow