Pagination
For faster response, UZIO supports pagination for specific APIs. To use pagination, page and size parameters need to be sent as request parameters as shown in an example below:
https://api.uzio.com/api/organization/kb/getAllEmployees/true?page=1&size=2
In the this example, the page is the page number, and size parameter is the number of records to be sent in each request.
Pagination metadata is included in the API response header wherever it is applicable.
Header | Description | Example |
---|---|---|
X-Per-Page | Number of records currently being returned per page. Same as the 'size' parameter in the request. | 25 |
X-Total-Count | The total number of records matching the request parameters. | 343 |
X-Total-Pages | Total number of pages for the request. Roughly (X-Total-Count / X-Per-Page). | 15 |
X-Page | The current page being returned. | 5 |
Updated 2 months ago