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개
  1. 2022년 7월 6일 오후 7: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