Hello new to POSTMAN and i’m trying to run a collection runner from a CSV file. I have saved the file as UTF-8 encoded (unix csv?). I’m posting a request to a URL using application/json. Here is a snippet
“SSN”: {{ssn}},
“FirstName”: {{first}},
“LastName”: {{last}},
The files seems to be formatted correctly, i do not see any illegal characters etc…
I receive the following error. I added x;s to mask data. but the ERROR appears in the middle of the name
{
“Exceptions”: {
“Exception”: [{
“Code”: -3,
“Message”: "Bad Request: Error - syntax error "
Bad value " [line 6, file offset 123]
“SSN”: xxxxxx,
“FirstName”: x * ERROR * xxxxx,
“LastName”: xxxxx,
"
}]
}
}
Looking at the request packet in POSTMAN, it is pulling the data correctly from the file. The error is the same for all 30 records.