How to fetch only the modified and deleted records from the Quickbook using QBFC COM component in c#.
Asked
Active
Viewed 515 times
1 Answers
0
Each individual entity type has it's own modified date filter. For example, the CustomerQuery
has the ORCustomerListQuery.CustomerListFilter.FromModifiedDate
and ORCustomerListQuery.CustomerListFilter.ToModifiedDate
. You'll find this pattern in the query message for every entity type and every transaction type.
For deleted records use the ListDeletedQuery
for entities and TxnDeletedQuery
for transactions.

Paul Keister
- 12,851
- 5
- 46
- 75