Hi,
I am using page & count in fetchxml .
How can I achieve the same in Web API using limit and offset
Thank You.
Hi @mandela ,
Yes, I tried using 'top' and 'skip', but the issue lies with 'skip'. When I used 'skip', I encountered an error stating that the 'skip' clause is not supported. Upon reviewing the documentation, I confirmed that 'skip' is indeed not supported. Are there any other alternatives?
Have you tried with skip and stop ?
GET [Organization URI]/api/data/v9.0/contacts?$select=fullname&$top=10&$skip=0
This will return the first 10 records from the ‘Contact’ entity, starting from the first record.
or
GET [Organization URI]/api/data/v9.0/contacts?$select=fullname&$top=10&$skip=10
This will return the next 10 records, starting from record number 11.
Fubar
69
Super User 2025 Season 1
oliver.rodrigues
49
Most Valuable Professional
Jon Unzueta
43