I am able to query Dynamics 365 API
https://<COMPANY-NAME>.dynamics.com/data/Ledgers?$filter=AccountingDate+ge+{0}+and+AccountingDate+lt+{1}
Where {0}
and {1}
are dates (i.e. 2019-03-15
)
The problem is that Dynamic 365 API has a limit of 10,000 records returned and there are more than 10,000 records. Is there a parameter to add to the URI that enables me to obtain the next "batch" of records so I can obtain all of them?
I have search with my Google-Fu but I must still be at the grasshopper level because I cannot find anything in Microsoft's Dynamics 365 API reference or on the web that mentions it. I am looking for a REST like solution so I can use this cross platform and not have to depend on an SDK.