API Class - mkplabs/systogether-quickbooks GitHub Wiki
#query( String queryString )
Uses the standard Quickbooks query syntax to query Quickbooks and return a list of Obj
List<STQB.Obj> qbInvoices = STQB.API.query(
'SELECT * FROM Invoice'
);
List<STQB.Obj> qbCustomers = STQB.API.query(
'SELECT * FROM Invoice MAXRESULTS 10'
);
List<STQB.Obj> qbPayments = STQB.API.query(
'SELECT * FROM Payment WHERE Id = \'12345\' '
);