Pagination
Work in progress

This warning will be removed once this page has passed testing.
You can request that resource collections be split into pages. You do this by specifying one or two parameters:
max_results- no matter how large the collection, your GET requests will never return more items from that collection than this number
- this sets the number of items per page
- if you do not specify
max_resultsthe service will use the value ofHY_PAGINATION_DEFAULT
page- given a collection split into pages of
max_resultseach,pagelets you request which page you want to GET - if you do not specify
pagethe service will use the value of1
- given a collection split into pages of
HY_PAGINATION_DEFAULT- the default value used if you do not specify amax_resultsHY_PAGINATION_LIMIT- ifmax_resultsis greater than this number, it is treated as if it was this number instead