I got a new error while parsing a CSV file for a Netsuite integration. Any advice here would be helpful.
"Code": "parse_error",
"Message": "Invalid Closing Quote: found non trimable byte after quote at line 3",
"source":"application",
"classification":"parse"
Hello Swaroop, there must be an unescaped double quote in that line, you'll need to fix the import so that it doesn't include double quotes. Here is an article I found that outlines the five most common CSV import errors and how to fix: https://medium.com/@francois.barbanson/5-most-common-parsing-errors-in-csv-files-e6a7e46b9303
Hey Joe, thanks for the response, will follow the same.