Pagination

Onbo supports pagination for any of our "List all" endpoints, including:

To paginate an API request, pass a limit and offset parameter in the URL of your request. For example, when retrieving a list of users the following request will pull the first 25 users:

GET https://sandbox-api.stilt.com/v1/users?limit=25&offset=0 

Similarly, the following request will pull the next 25 users (users 26-50):

GET https://sandbox-api.stilt.com/v1/users?limit=25&offset=25

When omitted, the default value for limit is 25 and offset is 0.

Last updated