Skip to main content

I ran across this error while attempting the Challenge using the bulkv2hocdata.csv file as the binary body: 

ClientInputError : LineEnding is invalid on user data. Current LineEnding setting is CRLF
9 Antworten
  1. 6. Juli 2022, 19:22

    Found the solution lower down, error from using a Windows OS on the supplied csv file.

    Solution: Change lineEnding from CRLF to LF in the Create Job POST 

    {

    "operation" : "insert",

    "object" : "Account",

    "contentType" : "CSV",

    "lineEnding" : "LF"

    }

0/9000