Jun 18, 2021 03:12 PM
Hello,
I’m trying to figure out a way to use the API to get all records modified TODAY(). When I retrieve records with the API I can see the createdTime field, but no modifiedTime field though the documentation says it exists.
Does anyone know of a formula that I can use to get all records modified TODAY()?
Thanks!
Jun 18, 2021 03:43 PM
Hey @Daniel_Dow
There is actually a function you can use in filterByFormula called LAST_MODIFIED_TIME()
for this purpose. Eg:
filterByFormula=IS_AFTER(LAST_MODIFIED_TIME()%2C+\"2021-01-25T14%3A23%3A41.000Z\")
Best,
Anthony
Jun 18, 2021 04:13 PM
Thanks! I’ll try that!