SerializationError when importing large orders
We're trying to import a large order (many line items) and each time one of the products randomly fails to insert the data into AccountRite (cloud) via the api.
{ "Errors": [ { "Name": "SerializationError", "Message": null, "AdditionalDetails": "Unexpected character encountered while parsing value: ,. Path 'Lines[58].UnitPrice', line 775, position 21.", "ErrorCode": 50, "Severity": "Error", "LearnMore": null } ], "Information": "Warning, error messages have not been finalised in this release and may change" }
{
"Type": "Transaction",
"Description": "",
"ShipQuantity": 6,
"UnitPrice": ,
"Total": 0,
"Job": null,
"TaxCode": {
"UID": ""
},
"Item": {
"UID": ""
}
It has nothing to do with characters or anything as it bombs on a different SKU each time.
The import takes a good few minutes to run, like 7 or 8 minutes.
There are about 150 products being sent.
How do we deal with this?