Updated Documents

The following request will produce a list of up to 250 events modified since a specified date/time:
https://<ApiEndpoint>/stores-active/contentinstance/event/filter?filter={"term":"lastModifiedDate","value":"<ModifiedDateTime>","operator":"atLeast"}&numberOfResults=250&api_key=<ApiKey>

In the above request, <ModifiedDateTime> is the earliest modified date/time for which event metadata should be returned, in ISO 8601 format, e.g. 2019-02-23T12:00:00.
Note that all documents include a “lastModified” property, but it can have a different name depending on the API endpoint. From some endpoints it’s called lastModifiedDate; from others it’s called lastModifiedDateTime. The value of the term property in the above request needs to match the name of the “lastModified” property in the documents returned by the API endpoint you’re querying.
The equivalent request can be made for other stores, e.g. the following request will produce a list of up to 250 contributors modified since a specified date/time:
https://<ApiEndpoint>/stores-active/contributor/filter?filter={"term":"lastModifiedDate","value":"<ModifiedDateTime>","operator":"atLeast"}&numberOfResults=250&api_key=<ApiKey>