-
Notifications
You must be signed in to change notification settings - Fork 2
marble‐filter
Miguel Fernandes edited this page Feb 5, 2017
·
6 revisions
Filter.
This filter uses date ranges to remove posts from processing actions.
fromDate: Only posts with created date after this variable's value will be allowed. Date format should comply with YYYY-MM-DDThh:mm:ss
or YYYY-MM-DD
formats.
toDate: Only posts with created date before this variable's value will be allowed. Date format should comply with YYYY-MM-DDThh:mm:ss
or YYYY-MM-DD
formats.
fromId: Only posts with ID greater or equal than this variable's value will be allowed. If date filters are used, this value is ignored.
toId: Only posts with ID lower or equal than this variable's value will be allowed. If date filters are used, this value is ignored.
{
"name": "filter",
"options": {
"fromDate": "2017-01-01",
"toDate": "2017-02-27T23:00:00"
}
}