This can be used to filter the list of transactions based on their points_expiration_date in Zinrelo. Child parameters are:
To filter dates 'equal to' a particular date, use operator "eq". Example: points_expiration_date={"eq":"01/21/2022"}
To filter dates 'greater than' a particular date, use operator "gt". Example: points_expiration_date={"gt":"01/21/2022"}
To filter dates 'greater than or equal to' a particular date, use operator "gte". Example: points_expiration_date={"gte":"01/21/2022"}
To filter dates 'lesser than' a particular date, use operator "lt". Example: points_expiration_date={"lt":"01/21/2022"}
To filter dates 'lesser than or equal to' a particular date, use operator "lte". Example: points_expiration_date={"lte":"01/21/2022"}
To filter dates 'between' a particular date, use operator "between". Example: points_expiration_date={"between":"12/01/2021-12/31/2022"}
Note: Our API records all date and time fields in UTC time.