So I've been able to get the XML Drop folder to work on orders through our company website. It adds the order successfully. However, when I click on the eCommerceid to view the item it should show it as sold or the quantity adjusted but it does not. I maybe missing a call that I'm not aware of and if thats the case I'll just add it. I assumed adding an order would update the item. Any help is appreciated.
Here is the XML I used:
<SixBitAPICalls>
<Order_Add>
<Orders>
<Order>
<ExternalOrderID><![CDATA[1234]]></ExternalOrderID>
<Status><![CDATA[InProcess]]></Status>
<TotalPaidAmount><![CDATA[44.95]]></TotalPaidAmount>
<TotalDueAmmount><![CDATA[44.95]]></TotalDueAmmount>
<AdjustmentFee><![CDATA[0.00]]></AdjustmentFee>
<AdjustmentCost><![CDATA[0.00]]></AdjustmentCost>
<PaymentReceivedDate><![CDATA[9/1/2017 2:20:54 PM]]></PaymentReceivedDate>
<PaymentClearedDate><![CDATA[9/1/2017 2:20:54 PM]]></PaymentClearedDate>
<PaymentType><![CDATA[PayPal]]></PaymentType>
<BusinessProfileID><![CDATA[1]]></BusinessProfileID>
<Site><![CDATA[None]]></Site>
<SalesTax><![CDATA[0]]></SalesTax>
<PaymentProcessingFee><![CDATA[0.00]]></PaymentProcessingFee>
<SubStatusID><![CDATA[0]]></SubStatusID>
<RemainingDueAmount><![CDATA[0.00]]></RemainingDueAmount>
<Buyer>
<Email><![CDATA[EMAIL]]></Email>
<FirstName><![CDATA[NAME]]></FirstName>
<LastName><![CDATA[NAME]]></LastName>
</Buyer>
<BillingAddress>
<AddressLine1><![CDATA[1 Main St]]></AddressLine1>
<AddressLine2><![CDATA[]]></AddressLine2>
<City><![CDATA[San Jose]]></City>
<State><![CDATA[CA]]></State>
<PostalCode><![CDATA[95131]]></PostalCode>
<Country><![CDATA[US]]></Country>
</BillingAddress>
<Shipments>
<Shipment>
<ShippingAddress>
<AddressLine1><![CDATA[1 Main St]]></AddressLine1>
<AddressLine2><![CDATA[]]></AddressLine2>
<State><![CDATA[CA]]></State>
<PostalCode><![CDATA[95131]]></PostalCode>
<Country><![CDATA[US]]></Country>
</ShippingAddress>
<Sales>
<Sale>
<eCommerceID><![CDATA[311948098618]]></eCommerceID>
<SKU><![CDATA[20158]]></SKU>
<SalePrice><![CDATA[44.95]]></SalePrice>
<QtySold><![CDATA[1]]></QtySold>
<SaleDate><![CDATA[9/1/2017 2:20:54 PM]]></SaleDate>
</Sale>
</Sales>
</Shipment>
</Shipments>
</Order>
</Orders>
</Order_Add>
</SixBitAPICalls>