Parameters can be added in order to:
•Limit the number of records returned (the "limit" parameter).
•Set the record number at which to start (the "offset" parameter).
For example, if you only want to return the first 10 records, you would set the limit parameter to 10.
If you then want to return the next 10 records, you would again set the limit parameter to 10, while setting the offset parameter to 10.
Let's look at examples using the List Events endpoint:
•Return the first ten Events:
ohttps://connect.eventpro.net/API/DataService.svc/events?limit=10
•Return the second set of ten Events:
ohttps://connect.eventpro.net/API/DataService.svc/events?limit=10&offset=10
•Return the third set of ten Events:
ohttps://connect.eventpro.net/API/DataService.svc/events?limit=10&offset=20