GetMostRecentEventForObjectAsync

Returns (Task<IEnumerable>)

Find the most recent event for the designated objects (ID Keys).

Name Description
folder
since
keys

Get Most Recent Event For Object Async

Example in C#

// Returns: IEnumerable<EventMessageSummaryItem>
var eventMessageSummaryItem = await client.GetMostRecentEventForObjectAsync(FolderInfo folder, DateTime since, String keys);

Example in CURL



           curl -X GET \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/lastevent?since=2019-02-25T21%3A27%3A07.6505885Z \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -D '["OBJECT_TO_CHECK_KEY"]'