MarkedDataSearch - Is there a way to query for evidence locks based on the modified date and time?

We can search based on the date and time it was created. If anything is modified for the existing evidence locks, searching for recent evidence locks will not provide us with the modified ones. We also need to fetch based on the modified date and time. Is it supported in any way?

Milestone Corporate - 2025 R1

MIPS SDK - 2023 R1

The MarkedDataSearch method on the ServerCommandService API only has one signature and modified time isn’t a parameter unfortunately. The returned VideoOS.Common.Proxy.Server.WCF.MarkedData objects have a LastModified property you could evaluate after retrieving records, but if there are hundreds of thousands of records (or millions - which is something I’ve seen), then that would obviously be a more expensive search than a query directly on LastModified backed by a database index.

string token,
guid[] deviceIds,
string searchText,
string[] users,
datetime createdFromTime,
datetime createdToTime,
datetime markedDataFromTime,
datetime markedDataToTime,
datetime tagTimeFromTime,
datetime tagTimeToTime,
datetime retentionExpireFrom,
datetime retentionExpireTo,
int pageIndex,
int pageSize,
VideoOS.Common.Proxy.Server.WCF.SortOrderOption sortOrder,
bool sortAscending

Any plan to implement directly based on the LastModified date and time? If yes, when can we expect?