Pagination
(Difference between revisions)
Administrator (Talk | contribs)
(Created page with "Large resources lists require pagination. Pagination is controlled by two query parameters, '''marker''' and '''limit'''. They are optional and if not given, the first page w...")
Newer edit →
(Created page with "Large resources lists require pagination. Pagination is controlled by two query parameters, '''marker''' and '''limit'''. They are optional and if not given, the first page w...")
Newer edit →
Revision as of 19:16, 27 January 2012
Large resources lists require pagination. Pagination is controlled by two query parameters, marker and limit. They are optional and if not given, the first page will be returned.
GET /<url>?marker=markerId&limit=pageSize
- marker
- Optional The id of the last resource on the previous page. All resources greater than marker up to limit will be returned.
- limit
- Optional The maximum number of resources that will be returned by the the resource list.