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:
Similarly, the following request will pull the next 25 users (users 26-50):
When omitted, the default value for limit
is 25
and offset
is 0
.
Last updated