Current process is we have an FTP folder where our dealers will drop their orders in json file format. Here is a sample data with French characters
[
{
"Customer Code": "2633",
"PO": "M1C0000887",
"Date": "2023/12/27",
"Location": "1",
"Ship To Addressee": "Test Dealer",
"Ship To Attention": "",
"Ship To Telephone Number": "999-999-9999",
"Ship To Address 1": "à, è, ù",
"Ship To Address 2": "â, ê, î, ô, û",
"Ship To Address 3": "ë, ï, ü",
"Ship To City": "Sainte-Adèle",
"Ship To State": "QC",
"Ship To ZIP": "J8B 0K1",
"Ship To Country Code": "CA",
"Notes": "This is a test dropship order, do not proceed",
"Items": [
{
"Part Number": "999999-9999-99",
"Qty": "1"
}
]
}
]
This is how it looks like when we preview the data in our FTP Source tile.
{
"page_of_records": [
{
"record": {
"Customer Code": "2633",
"PO": "M1C0000887",
"Date": "2023/12/27",
"Location": "1",
"Ship To Addressee": "Test Dealer",
"Ship To Attention": "",
"Ship To Telephone Number": "999-999-9999",
"Ship To Address 1": "�, �, �",
"Ship To Address 2": "�, �, �, �, �",
"Ship To Address 3": "�, �, �",
"Ship To City": "Sainte-Ad�le",
"Ship To State": "QC",
"Ship To ZIP": "J8B 0K1",
"Ship To Country Code": "CA",
"Notes": "This is a test dropship order, do not proceed",
"Items": [
{
"Part Number": "999999-9999-99",
"Qty": "1"
}
]
}
}
]
}
I tried playing around with the file encoding options: UTF-8, UTF-16LE, and Windows-1252 to no avail.
Is there a fix for this issue that we are experiencing? Any advice is welcome and thanks!