Hi Team, We have an api endpoint for a client to PUSH data into our system. There data is not great, and during postman testing we receive multiple errors. {
"error": {
"code": "400",
"message": "Error parsing JSON. Illegal unquoted character ((CTRL-CHAR, code 30)): has to be escaped using backslash to be included in string value\n at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 8, column: 69] Error parsing JSON. Illegal unquoted character ((CTRL-CHAR, code 30)): has to be escaped using backslash to be included in string value\n at [Source: REDACTED (`StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION` disabled); line: 8, column: 69]"
}
} The importer allows seems to allow you to setup conversion rules, but it seems to not even want to get to the converter. is there a way to convert illegal characters on our end? similarly, we have booleans, but their data contains a mixture of yes/no/empty, true/false, 0/1
↧