diff options
Diffstat (limited to 'doc/api/scim.md')
-rw-r--r-- | doc/api/scim.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/scim.md b/doc/api/scim.md index bc4f2bf9040..8cbd6103e88 100644 --- a/doc/api/scim.md +++ b/doc/api/scim.md @@ -24,6 +24,11 @@ Parameters: |:----------|:--------|:---------|:----------------------------------------------------------------------------------------------------------------------------------------| | `filter` | string | yes | A [filter](#available-filters) expression. | | `group_path` | string | yes | Full path to the group. | +| `startIndex` | integer | no | The 1-based index indicating where to start returning results from. A value of less than one will be interpreted as 1. | +| `count` | integer | no | Desired maximum number of query results. | + +NOTE: **Note:** +Pagination follows the [SCIM spec](https://tools.ietf.org/html/rfc7644#section-3.4.2.4) rather than GitLab pagination as used elsewhere. If records change between requests it is possible for a page to either be missing records that have moved to a different page or repeat records from a previous request. Example request: |