
Announcements
I am sending a request in a loop to SharePoint to return the items contained in a list in smaller batches. However, the skiptoken is not working, causing the same items to be returned in each repetition. How can I resolve this?
URI: _api/web/lists/getbytitle('Workflow')/items?$top=@{variables('Lote')}&$skiptoken=@{variables('ItensProcessados')}
Hi @jurunas2023
You need $skiptoken=Paged=TRUE&@{variables('ItensProcessados')}=0
Have a look at this article
Implementing Paging for SharePoint in Power Automate (tekkigurus.com)
Thanks