Convert CSV to array.
POST/convert/csv/array
Convert CSV to array.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
csvstringrequired
The CSV string that will be parsed.
omitFirstRowboolean
Whether to omit the first row. Default is false.
delimiterstringrequired
The delimiter by which the rows will be split.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
arrayarray[]required
The array of rows, where each row is an array of fields.
{
"array": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}