Pagination
The API requires the user to take pagination into account when requesting data.
This is handled using the Skip and Take parameters in the query string.
Each response will contain the following headers to indicated the requested Skip and Take, and the total amount of data:
Header | Description | Schema |
---|---|---|
x-cm-pagination-skip | Amount of items skipped. | number |
x-cm-pagination-take | Amount of items retrieved. | number |
x-cm-pagination-total | Total items that can be retrieved. | number |
Updated 12 months ago