J
jts-law
Guest
Curtis, I just tested one of my services with PostMan and it works correctly to get 25 records, skipping the first 50. PUT: [URL to Service]/count Content-Type: application/json Body: { "filter": "{\"skip\": 50, \"top\": 25}" } To apply this filter to the GET I used the following URL to get 5 records starting with the first: [URL to Service]/?filter=%7B"skip"%3A0%2C"top"%3A5%7D To return 10 records, skipping 15, use the following: [URL to Service]/?filter=%7B"skip"%3A15%2C"top"%3A10%7D Hope this helps. Louis
Continue reading...
Continue reading...