SharePoint 2013 API - get only newly modified list items

3.6k views Asked by At

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

There are 1 answers

0
user623396 On BEST ANSWER

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

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