diff --git a/docs-v2/content/en/quickstart.md b/docs-v2/content/en/quickstart.md index 73c3415c..26d74d03 100644 --- a/docs-v2/content/en/quickstart.md +++ b/docs-v2/content/en/quickstart.md @@ -47,7 +47,13 @@ install Laravel Restify while still preferring stable package releases for your Having the package setup and users table migrated, you should be good to perform the first API request: ```http request -GET: /api/restify/users?perPage=10 +GET: /api/restify/users?perPage=10&page=2 +``` + +or using [json api](https://jsonapi.org/profiles/ethanresnick/cursor-pagination/#auto-id-pagesize) format: + +```http request +GET: /api/restify/users?page[size]=10&page[number]=2 ``` This should return the users list paginated and formatted according to [JSON:API](https://jsonapi.org/format/) standard.