Skip to main content

Convert CSV to JSON.

POST 

/convert/csv/json

Convert CSV to JSON.

Request

Header Parameters

    ipaas string

Bodyrequired

    csvstringrequired

    The CSV string that will be converted.

    noheaderboolean

    If this is false, the first line will be interpreted as column names instead of data. Default is false.

    delimiter object

    The delimiter between the different columns. Can be auto for automatic detection of delimiters, or an array of delimiters. Default is auto.

    anyOf
    string

    Possible values: [auto]

    trimboolean

    Whether spaces around column values should be trimmed. Default is true.

    ignoreEmptyboolean

    Whether empty column values should be ignored, instead of being output as empty. Default is false.

Responses

Success

Schema
    jsonundefined[]required

    An array of JSON objects parsed from the CSV.