API Query with date format

Hi,

Can someone give me a clue how I can get all hotspot user connect certain since a date. If I use the query string:

“?>last-seen=jun/01/2016 00:00:00”, I got users who where seen in May because “m” of the word “may” is greater than “j” of “jun”. In fact is there a way to convert the last-seen parameter in my query to a more standard format like 2016.06.01 or 2016-06-01 …

Thanks!

Nothing natively available for that. You’d have to get all items, and filter on the client side. Most languages have means by which you can convert dates into objects (as long as you specify the exact format), and then compare the objects.