Commit e0027b75 authored by Mike Lewis's avatar Mike Lewis

Merge branch 'docs-ab/pagination' into 'master'

Docs: Fix request method for pagination

See merge request gitlab-org/gitlab!23056
parents d737feba a944ac7d
...@@ -410,7 +410,7 @@ This method is controlled by the following parameters: ...@@ -410,7 +410,7 @@ This method is controlled by the following parameters:
In the example below, we list 50 [projects](projects.md) per page, ordered by `id` ascending. In the example below, we list 50 [projects](projects.md) per page, ordered by `id` ascending.
```bash ```bash
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?pagination=keyset&per_page=50&order_by=id&sort=asc" curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?pagination=keyset&per_page=50&order_by=id&sort=asc"
``` ```
The response header includes a link to the next page. For example: The response header includes a link to the next page. For example:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment