I am using Quickbooks SDK (qbxml) for desktop for modifying an invoice and I am getting an error "QuickBooks found an error when parsing the provided XML text stream." I am using C# as the development language. I am using the "Other" and "FOB" fields for showing the UPS shipping details.
<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="13.0"?>
<QBXML>
<QBXMLMsgsRq onError="stopOnError">
<InvoiceModRq requestID="2">
<InvoiceMod>
<TxnID>18D23-1422298930</TxnID>
<EditSequence>1423512371</EditSequence>
<Other>1ZAV49630440508209</Other>
<ShipDate>2015-02-03</ShipDate>
<FOB>2015-02-04</FOB>
</InvoiceMod>
</InvoiceModRq>
</QBXMLMsgsRq>
</QBXML>
Whats wrong in this?
<FOB>02/03/2015</FOB>
instead of<FOB>2015-02-03</FOB>
– Filburt