The title states my problem quite exactly. If I try to gather all 400+ items from a list using sharepoint's REST API, I only get first 100.
I have read http://msdn.microsoft.com/en-us/library/office/dn292552(v=office.15).aspx and in the "Working with list items by using REST" part, they're stating that
The following example shows how to retrieve all of a list’s items.
url: http://site url/_api/web/lists/GetByTitle(‘Test')/items
method: GET
headers: ...
I have highlighted word all, because that's not what I'm getting ...
Am I missing something? Is there some option I should disable/enable to gett truly all items?
Thanks
http://site url/_api/web/lists/GetByTitle(‘Test')/items
with my own values and I get XML with these 100 items) – Upcast$req.headers.add("X-FORMS_BASED_AUTH_ACCEPTED", "f")
,$req.method = "GET"
and$req.Credentials = [system.net.credentialcache]::defaultcredentials
, that's pretty much it. – Upcast