Posting a deposit to QuickBooks Online Edition (QBOE)
When doing QuickBooks Online Edition (QBOE) development requests, you can do many tasks through the QuickBooks Online website that you cannot do through the QuickBooks SDK. Recently I ran into another one when trying to automatically insert a Deposit into a QBOE database. The DepositAddRq method is only supported in the standard QuickBooks US edition. This is the Intuit Developer Network Unified Onscreen Reference for the DepositAdd method:
Notice the US Flag icon in the implementation column. When working with QBOE you want to see the (online) icon.
This is the IDN Onscreen Reference for the JournalEntryAdd method:
Notice both the US and Online editions are both supported. And this is how we worked around not having the DepositAdd method available for our QBOE database. We just made a Journal Entry instead.
Just so you know you can also filter the IDN Onscreen Reference by the QuickBooks Edition. If you uncheck the “US” checkbox then only the methods that are available to QBOE are shown. This is nice way to filter the onscreen reference.