Pagination

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:

ParameterDefault ValueDescription
page1Defines the page number to be retrieved
page_size50 (for Variables 200)Defines how many items per page are retrieved

📘

Optional

Please 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' \