Hi,
I am getting the following error message from a Quickbooks create sales receipt module: The operation failed with an error. ValidationFault: Request has invalid or unsupported property (Property Name:failed to parse json object; a property specified is unsupported or invalid)
Is there a way to get more specific detail on what is not passing validation?
The JSON input into the module is:
[
{
"Line": [
{
"Qty": 1,
"Amount": 23.8,
"ItemRef": "94",
"ClassRef": null,
"UnitPrice": 23.8,
"TaxCodeRef": {
"value": "6",
"name": "20.0% S"
},
"Description": "Pureology Hydrate Shampoo 266ml"
},
{
"Qty": 1,
"Amount": 24.5,
"ItemRef": "398",
"ClassRef": null,
"UnitPrice": 24.5,
"TaxCodeRef": {
"value": "6",
"name": "20.0% S"
},
"Description": "Davines Oi All in One Milk 135ml"
},
{
"Qty": 1,
"Amount": 26.84,
"ItemRef": "133",
"ClassRef": null,
"UnitPrice": 26.84,
"TaxCodeRef": {
"value": "6",
"name": "20.0% S"
},
"Description": "MOROCCANOIL Curl Defining Cream 250ml"
}
],
"TxnDate": "2023-12-18T22:22:00.000Z",
"discount": {},
"DocNumber": "888888",
"CurrencyRef": "GBP",
"CustomerRef": "406",
"ShipFromAddr": {},
"TxnTaxDetail": {},
"PaymentMethodRef": "3",
"DepositToAccountRef": "9",
"GlobalTaxCalculation": "TaxInclusive"
}
]
Many thanks for any help!!