Pagination is used to divide objects into pages (page) with one or more items per page (page_size?). The idea behind it to make result sets more manageable.
In total there are 2 parameters that allow to configure the pagination:
| Parameter | Default Value | Description |
|---|---|---|
page | 1 | Defines the page number to be retrieved |
page_size | 50 (for Variables 200) | Defines how many items per page are retrieved |
OptionalPlease note, that the Pagination is optional for all endpoints.
//Example Request to GET the first 20 variables
curl -X GET 'https://industrial.api.ubidots.com/api/v2.0/variables/?page=1&page_size=20' \