Pagination
The integration API supports server-side paging. The available parameters are:
url: https://example.com.br/v1/employees?$count=true&$pagesize=50
query:
$pagesize=50
$count=true
Parameters
$pagesize
- Number of records allowed per page - Default value (applied to all calls): 500
, Maximum limit: 500
$count
- Returns the number of records found
In case you want to get the data pagination links, it is necessary to enable the count. If this is not enabled, the return of records will be limited to the pagesize value and a link will not be generated to search for other records, if any.
Response
{
"items": [
{
"id": 6,
"name": "Antares"
},
{
"id": 7,
"name": "John"
},
{
"id": 8,
"name": "Doe"
}
...
],
"nextPageLink": "https://example.com.br/employees?$skip=50",
"count": 100
}
Parameters
nextPageLink
- Contains a link to the next page, if more records are available
count
- Number of records found
{{component-feedback-article}}