Forum Discussion

María José Pedreira's avatar
María José Pedreira
Brass Contributor
Jun 28, 2017

REST query Sharepoint 2013

Hello, I need to retrieve items with Title repeated twice or more. Can we do it with a REST query? Next url give me all the items, but I need to filter items with occurence 1   https://mysite.com...
  • Pieter Veenstra's avatar
    Pieter Veenstra
    Jun 28, 2017

    The 100 items is a way to protect your system. you can overrise this by using $top like this:

    _api/web/lists/getByTitle(
      'Books')/items?$select=Title&$filter=Author eq 'Mark Twain'&$top=2

Resources