diff --git a/docs/docs/concepts/rest-api.mdx b/docs/docs/concepts/rest-api.mdx index 5af6e407f39..c91986b1e9d 100644 --- a/docs/docs/concepts/rest-api.mdx +++ b/docs/docs/concepts/rest-api.mdx @@ -20,11 +20,9 @@ pages (where applicable): - Previous (prev) - Last -Pages are created based on the values of `per_page` and `page` provided in the +Pagination is done based on `per_page` and `page` parameters provided in the querystring, where `per_page` is the page size, and `page` is the current page. -In most scenarios, the `per_page` should be a multiple of the `page`. - Example: ``` @@ -35,7 +33,7 @@ Example: > < HTTP/1.1 200 OK < Content-Type: application/json -< Link: ; rel="first",; rel="next",; rel="prev",; rel="last" +< Link: ; rel="first",; rel="next",; rel="prev",; rel="last" < Date: Mon, 22 Apr 2019 23:34:29 GMT < Transfer-Encoding: chunked <