Pagination
Many API calls are paginated. You can provide page
and per_page
params to the API. In the example below we are getting all inputs and specifying to start at page 2 and get back 20 results per page.
app.inputs.list({page: 2, perPage: 20});
Last updated
Was this helpful?