danilmk
I'm new here

Is there a way to find out if something has been changed in the project since the date X via API?

Hello,

I'm wondering if there is a way to find out if something has been changed in the project since the date X via API?

0 Kudos
1 Reply
ChKo
Elite Observer

Hi,

the simple solution would be to start a query with the QueryAgent that could look like this:
fs.changeDate > 20240313000000 //format yyyyMMddHHmmss
Note: The search index must be correct for this. There could also be a race condition if the indexing of the internal FS search has not yet been completed when changes are made.
"changeDate" is also not part of the official API (see https://docs.e-spirit.com/odfs/access/de/espirit/firstspirit/agency/QueryAgent.html )

The alternative would be to use Project.getRevisions (see https://docs.e-spirit.com/odfs/access/de/espirit/firstspirit/access/project/Project.html#getRevision... ) to collect the objects.

Greetings,
Christopher