Date Range Filters

The following properties are stored as dates:

dateInstalled

dateLastSeen

The type field in the above filters needs to be date or dateRange.

If date is specified, then a value field must also be present. The value field should contain a date.
If dateRange is specified, then the value field should NOT be used. Instead, the properties min and max are to be used. These refer to the minimum and maximum dates to be included in the report. If only one limit needs to be set, the other property is to be left out.

In the following example, users installed after January 1st 2018 are to be shown:

{

    "dateInstalled":

        {

            "type": "dateRange",

            "min": "2018-01-01"

        }

}

Note that all dates must be in ISO 8601 format.