我想使用Web连接器更新Quickbook项目库存。我已经使用SDK通过Web Connector连接Q / B。我使用下面在Qb OSR(https://developer-static.intuit.com/qbSDK-current/Common/newOSR/index.html)上找到的qbxml请求
这是我正在使用的XML。
<?xml version="1.0" encoding="UTF-8"?>
<?qbxml version="13.0"?>
<QBXML>
<QBXMLMsgsRq onError="stopOnError">
<InventoryAdjustmentAddRq>
<InventoryAdjustmentAdd>
<AccountRef>
<ListID>80000062-1702627837</ListID>
</AccountRef>
<InventoryAdjustmentLineAdd>
<ItemRef>
<ListID>80000062-1702627837</ListID>
</ItemRef>
<QuantityAdjustment>
<NewQuantity>10</NewQuantity>
</QuantityAdjustment>
</InventoryAdjustmentLineAdd>
</InventoryAdjustmentAdd>
</InventoryAdjustmentAddRq>
</QBXMLMsgsRq>
</QBXML>
但是它给我错误,指示未找到/无效的对象ID。但是该ID在QuickBook中可用。因此,请指导我如何使用SDK和Webconnector更新商品库存。
谢谢