1
votes

I'm currently using this REST service to retrieve list items:

_api/lists/getbytitle('List Title')/items?$oderby=DueDate

Is it possible to use some query parameter to filter the items newer/older than a specific date, using the standard Modified date field?

1

1 Answers

4
votes

I found the answer myself: using the $filter parameter with OData expression

/items?$filter=Modified gt datetime'2014-11-27T12:00:00.000Z'