Use Case: Retrieve al deals that created at January 2020.
I found 2 ways to retrieve deals:
1. Get alldeals with /crm/v3/objects/deals
2. Use search /crm/v3/objects/deals/search with sorting by createdate to get last 10,000 deals.
Both are not good enough. Request all every time that I want to update my data is wasteful and blast the API, and the last 10,000 may not include the requested date range.
Is there an option to retrieve deals by date range?
I think the solution could be under the Search method.
If you will support createdate as a searchable property
@PowerMyAnalytic , Sorry for ressurecting the old question but I have the same problem. And as I can see search endpoint doesn't suit me well since it can return only 10000 records max and have more strict rate limits.
What if I want to get ALL records starting from Jan 1, 2021 even if there are 20000 records? The option I use know is to list all the records and later filter the results but it's not optimal neither for our customers since waiting time becomes longer nor for your servers, I believe