Simple request. I'm using the HTTP widget on a flow to get only the 'Title' and 'ID' columns. The URI looks like:
/_api/Web/Lists/getByTitle('MyListName')/Items/?$select=ID,Title
Returns: (just a ship)
{
"odata.nextLink": "https://SharepointSiteURL/_api/Web/Lists/getByTitle(%27MyListName%27)/Items?%24skiptoken=Paged%3dTRUE%26p_ID%3d3583&%24select=ID%2cTitle",
"value": [
{
"Id": 3484,
"Title": "0010c00001stVwwAAE",
"ID": 3484
},
{
"Id": 3485,
"Title": "0010c00001stgqOAAQ",
"ID": 3485
}
... snip ...
]
}
That works fine if there are less than 100 rows.
In my case the list may be more that 1000 rows. I have seed posts on how to set the top and pagination when using the SharePoint GET widget. ( @grantjenkins is one example here).
How can I set the "Top" and Pagination values when using the SharePoint HTTP widget?
Thank you for your time.
Alex